Class: Framed::Emitters::Base
- Inherits:
-
Object
- Object
- Framed::Emitters::Base
show all
- Defined in:
- lib/framed/emitters.rb
Instance Method Summary
collapse
Constructor Details
#initialize(client) ⇒ Base
Returns a new instance of Base.
7
8
9
|
# File 'lib/framed/emitters.rb', line 7
def initialize(client)
@client = client
end
|
Instance Method Details
#enqueue(event) ⇒ Object
18
19
20
|
# File 'lib/framed/emitters.rb', line 18
def enqueue(event)
raise NotImplementedError
end
|
#start ⇒ Object
14
15
16
|
# File 'lib/framed/emitters.rb', line 14
def start
end
|
#stop(drain = false) ⇒ Object
11
12
13
|
# File 'lib/framed/emitters.rb', line 11
def stop(drain = false)
end
|