class Threatinator::Filter

Acts as a filter for parser data.

Public Instance Methods

filter?(record) click to toggle source

What is passed in as arguments depends upon the parser.

@param [Threatinator::Record] record The record to filter @return [Boolean] true if filtered, false otherwise.

# File lib/threatinator/filter.rb, line 8
def filter?(record)
  raise NotImplementedError.new("#{self.class}.filter?(record) not implemented")
end