Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created April 8, 2016 23:35
Show Gist options
  • Save sbellware/5b0912f97638a41f33030636b309412c to your computer and use it in GitHub Desktop.
Save sbellware/5b0912f97638a41f33030636b309412c to your computer and use it in GitHub Desktop.
module Events
class Recorded
include EventStore::Messaging::Message
include Lapse
attribute :error_id
attribute :time
attribute :source
attribute :hostname
attribute :error
def lapsed?(now)
elapsed_milliseconds(now) > self.class.effective_milliseconds
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment