class Bifrost::Subscriber

A subscriber is a type that registers interest in receiving messages posted to certain topics

Attributes

name[R]
options[R]

Public Class Methods

new(name, options = {}) click to toggle source
# File lib/bifrost/subscriber.rb, line 8
def initialize(name, options = {})
  @name ||= name
  @options ||= options
end