Method: EventSource::Postgres::Put#position

Defined in:
lib/event_source/postgres/put.rb

#position(records) ⇒ Object



126
127
128
129
130
131
132
# File 'lib/event_source/postgres/put.rb', line 126

def position(records)
  position = nil
  unless records[0].nil?
    position = records[0].values[0]
  end
  position
end