Method: Computation#stop

Defined in:
lib/signalfx/signalflow/computation.rb

#stop(reason = nil) ⇒ Object

Parameters:

  • reason (String) (defaults to: nil)

    Reason for stopping the computation.



237
238
239
# File 'lib/signalfx/signalflow/computation.rb', line 237

def stop(reason=nil)
  @stop_func.call(@handle, reason)
end