Class: Threatinator::Output
- Inherits:
-
Object
- Object
- Threatinator::Output
show all
- Defined in:
- lib/threatinator/output.rb
Defined Under Namespace
Classes: Config
Instance Method Summary
collapse
Constructor Details
#initialize(config) ⇒ Output
5
6
|
# File 'lib/threatinator/output.rb', line 5
def initialize(config)
end
|
Instance Method Details
#finish ⇒ Object
14
15
16
17
18
|
# File 'lib/threatinator/output.rb', line 14
def finish
raise NotImplementedError.new("#{self.class}#finish is not implemented")
end
|
#handle_event(event) ⇒ Object
8
9
10
11
12
|
# File 'lib/threatinator/output.rb', line 8
def handle_event(event)
raise NotImplementedError.new("#{self.class}#handle_event is not implemented")
end
|