Method: Computation#attach
- Defined in:
- lib/signalfx/signalflow/computation.rb
#attach(**options) ⇒ Computation
Attach to an already running computation.
*Not currently implemented on backend!*
channel attached to it.
218 219 220 221 222 223 |
# File 'lib/signalfx/signalflow/computation.rb', line 218 def attach(**) raise "Computation #{@handle} is already attached!" if @channel @channel = @attach_func.call(@handle, **) self end |