class Traject::NullWriter

A Null writer that does absolutely nothing with records given to it, just drops em on the floor.

Attributes

settings[R]

Public Class Methods

new(argSettings) click to toggle source
# File lib/traject/null_writer.rb, line 6
def initialize(argSettings)
end

Public Instance Methods

close() click to toggle source
# File lib/traject/null_writer.rb, line 18
def close
  # null
end
put(context) click to toggle source
# File lib/traject/null_writer.rb, line 14
def put(context)
  # null
end
serialize(context) click to toggle source
# File lib/traject/null_writer.rb, line 10
def serialize(context)
  # null
end