class EndState::Concluder

Attributes

object[R]
params[R]
state[R]

Public Class Methods

new(object, state, params) click to toggle source
# File lib/end_state/concluder.rb, line 6
def initialize(object, state, params)
  @object = object
  @state = state
  @params = params
end

Public Instance Methods

call() click to toggle source
# File lib/end_state/concluder.rb, line 12
def call
  false
end
rollback() click to toggle source
# File lib/end_state/concluder.rb, line 16
def rollback
end