Package io.deephaven.engine.table.impl
Class QueryTable.Operation.Result<T extends DynamicNode & NotificationStepReceiver>
java.lang.Object
io.deephaven.engine.table.impl.QueryTable.Operation.Result<T>
- Enclosing interface:
- QueryTable.Operation<T extends DynamicNode & NotificationStepReceiver>
public static class QueryTable.Operation.Result<T extends DynamicNode & NotificationStepReceiver>
extends Object
The resulting table and listener of the operation.
-
Field Summary
Modifier and TypeFieldDescriptionfinal TableUpdateListener
The listener that should be attached to the parent.final T
-
Constructor Summary
ConstructorDescriptionResult
(T resultNode, @Nullable TableUpdateListener resultListener) Construct the result of an operation. -
Method Summary
-
Field Details
-
resultNode
-
resultListener
The listener that should be attached to the parent. The listener may be null if the table does not need to respond to ticks from other sources (e.g. the parent is non-refreshing).
-
-
Constructor Details
-
Result
-
Result
Construct the result of an operation. The listener may be null if the table does not need to respond to ticks from other sources (e.g. the parent is non-refreshing).- Parameters:
resultNode
- the result of the operationresultListener
- the listener that should be attached to the parent (or null)
-