Class PythonReplayShiftObliviousListenerAdapter

java.lang.Object
io.deephaven.util.referencecounting.ReferenceCounted
io.deephaven.engine.liveness.ReferenceCountedLivenessReferent
io.deephaven.engine.liveness.ReferenceCountedLivenessNode
io.deephaven.engine.liveness.LivenessArtifact
io.deephaven.engine.table.impl.InstrumentedTableListenerBase
io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListener
io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListenerAdapter
io.deephaven.integrations.python.PythonReplayShiftObliviousListenerAdapter
All Implemented Interfaces:
io.deephaven.base.log.LogOutputAppendable, io.deephaven.engine.liveness.LivenessManager, io.deephaven.engine.liveness.LivenessNode, io.deephaven.engine.liveness.LivenessReferent, io.deephaven.engine.table.ShiftObliviousListener, io.deephaven.engine.table.TableListener, io.deephaven.engine.updategraph.NotificationQueue.Dependency, TableSnapshotReplayer, Serializable

@ScriptApi public class PythonReplayShiftObliviousListenerAdapter extends io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListenerAdapter implements TableSnapshotReplayer
A Deephaven table listener which passes update events to a Python listener object. The listener can also replay the current table snapshot. The Python listener object can be either (1) a callable or (2) an object which provides an "onUpdate" method. In either case, the method must take four arguments (isReplay, added, removed, modified).
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListener

    io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListener.Notification

    Nested classes/interfaces inherited from class io.deephaven.engine.table.impl.InstrumentedTableListenerBase

    io.deephaven.engine.table.impl.InstrumentedTableListenerBase.ErrorNotification, io.deephaven.engine.table.impl.InstrumentedTableListenerBase.NotificationBase

    Nested classes/interfaces inherited from interface io.deephaven.engine.table.TableListener

    io.deephaven.engine.table.TableListener.Entry
  • Field Summary

    Fields inherited from class io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListenerAdapter

    source
  • Constructor Summary

    Constructors
    Constructor
    Description
    PythonReplayShiftObliviousListenerAdapter(io.deephaven.engine.table.Table source, org.jpy.PyObject pyObjectIn)
    Create a Python listener.
    PythonReplayShiftObliviousListenerAdapter(String description, io.deephaven.engine.table.Table source, boolean retain, org.jpy.PyObject pyObjectIn)
    Create a Python listener.
    PythonReplayShiftObliviousListenerAdapter(String description, io.deephaven.engine.table.Table source, org.jpy.PyObject pyObjectIn)
    Create a Python listener.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onUpdate(io.deephaven.engine.rowset.RowSet added, io.deephaven.engine.rowset.RowSet removed, io.deephaven.engine.rowset.RowSet modified)
     
    void
    Replay the current table snapshot into a listener.

    Methods inherited from class io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListenerAdapter

    canExecute, destroy, onFailureInternal

    Methods inherited from class io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListener

    getNotification, setInitialImage

    Methods inherited from class io.deephaven.engine.table.impl.InstrumentedTableListenerBase

    append, getEntry, getErrorNotification, getUpdateGraph, onFailure, onFailureInternalWithDependent, satisfied, setVerboseLogging, toString

    Methods inherited from class io.deephaven.engine.liveness.LivenessArtifact

    manageWithCurrentScope

    Methods inherited from class io.deephaven.engine.liveness.ReferenceCountedLivenessNode

    getWeakReference, initializeTransientFieldsForLiveness, onReferenceCountAtZero, tryManage, tryUnmanage, tryUnmanage

    Methods inherited from class io.deephaven.engine.liveness.ReferenceCountedLivenessReferent

    dropReference, tryRetainReference

    Methods inherited from class io.deephaven.util.referencecounting.ReferenceCounted

    decrementReferenceCount, forceReferenceCountToZero, getReferenceCountDebug, incrementReferenceCount, resetReferenceCount, tryDecrementReferenceCount, tryIncrementReferenceCount

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface io.deephaven.engine.liveness.LivenessManager

    manage, tryManage

    Methods inherited from interface io.deephaven.engine.liveness.LivenessNode

    tryUnmanage, tryUnmanage, unmanage, unmanage

    Methods inherited from interface io.deephaven.engine.liveness.LivenessReferent

    dropReference, getReferentDescription, getWeakReference, retainReference, tryRetainReference

    Methods inherited from interface io.deephaven.engine.updategraph.NotificationQueue.Dependency

    getUpdateGraph

    Methods inherited from interface io.deephaven.engine.table.TableListener

    getErrorNotification, onFailure
  • Constructor Details

    • PythonReplayShiftObliviousListenerAdapter

      public PythonReplayShiftObliviousListenerAdapter(io.deephaven.engine.table.Table source, org.jpy.PyObject pyObjectIn)
      Create a Python listener. No description for this listener will be provided. A hard reference to this listener will be maintained to prevent garbage collection. See PythonReplayShiftObliviousListenerAdapter(String, Table, boolean, PyObject) if you do not want to prevent garbage collection of this listener.
      Parameters:
      source - The source table to which this listener will subscribe.
      pyObjectIn - Python listener object.
    • PythonReplayShiftObliviousListenerAdapter

      public PythonReplayShiftObliviousListenerAdapter(String description, io.deephaven.engine.table.Table source, org.jpy.PyObject pyObjectIn)
      Create a Python listener. A hard reference to this listener will be maintained to prevent garbage collection. See PythonReplayShiftObliviousListenerAdapter(String, Table, boolean, PyObject) if you do not want to prevent garbage collection of this listener.
      Parameters:
      description - A description for the UpdatePerformanceTracker to append to its entry description.
      source - The source table to which this listener will subscribe.
      pyObjectIn - Python listener object.
    • PythonReplayShiftObliviousListenerAdapter

      public PythonReplayShiftObliviousListenerAdapter(String description, io.deephaven.engine.table.Table source, boolean retain, org.jpy.PyObject pyObjectIn)
      Create a Python listener.
      Parameters:
      description - A description for the UpdatePerformanceTracker to append to its entry description.
      source - The source table to which this listener will subscribe.
      retain - Whether a hard reference to this listener should be maintained to prevent it from being collected.
      pyObjectIn - Python listener object.
  • Method Details

    • replay

      public void replay()
      Description copied from interface: TableSnapshotReplayer
      Replay the current table snapshot into a listener. A shared or exclusive UGP lock should be held when calling this method.
      Specified by:
      replay in interface TableSnapshotReplayer
    • onUpdate

      public void onUpdate(io.deephaven.engine.rowset.RowSet added, io.deephaven.engine.rowset.RowSet removed, io.deephaven.engine.rowset.RowSet modified)
      Specified by:
      onUpdate in interface io.deephaven.engine.table.ShiftObliviousListener
      Specified by:
      onUpdate in class io.deephaven.engine.table.impl.ShiftObliviousInstrumentedListenerAdapter