class Tribe::Event

Attributes

command[RW]
data[RW]
future[RW]
source[RW]

Public Class Methods

new(command, data, source = nil) click to toggle source
# File lib/tribe/event.rb, line 9
def initialize(command, data, source = nil)
  @command = command
  @data = data
  @source = source
end