class Synapse::Command::VoidCallback

Implementation of a command callback that does nothing

Public Instance Methods

on_failure(exception) click to toggle source

@param [Exception] exception The cause of the failure @return [undefined]

# File lib/synapse/command/callbacks/void.rb, line 11
def on_failure(exception); end
on_success(result) click to toggle source

@param [Object] result The result from the command handler @return [undefined]

# File lib/synapse/command/callbacks/void.rb, line 7
def on_success(result); end