Class: RServiceBus::Saga_Base

Inherits:
Object
  • Object
show all
Defined in:
lib/rservicebus/Saga/Base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSaga_Base

Returns a new instance of Saga_Base.



7
8
9
# File 'lib/rservicebus/Saga/Base.rb', line 7

def initialize
    @finished = false
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/rservicebus/Saga/Base.rb', line 5

def data
  @data
end

Instance Method Details

#FinishObject



14
15
16
# File 'lib/rservicebus/Saga/Base.rb', line 14

def Finish
    @data.finished = true
end

#sendTimeout(msg, milliseconds) ⇒ Object



11
12
# File 'lib/rservicebus/Saga/Base.rb', line 11

def sendTimeout( msg, milliseconds )
end