- java.lang.Object
-
- com.pervasive.datarush.operators.OperatorProxies
-
public final class OperatorProxies extends Object
Public only as a matter of implementation; not intended for external use
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OperatorProxies.CompositeOperatorProxy
Public only as a matter of implementation; not intended for external usestatic class
OperatorProxies.DeferredCompositeOperatorProxy
Public only as a matter of implementation; not intended for external usestatic class
OperatorProxies.ExecutableOperatorProxy
Public only as a matter of implementation; not intended for external usestatic class
OperatorProxies.IterativeOperatorProxy
Public only as a matter of implementation; not intended for external usestatic class
OperatorProxies.OperatorProxy
Public only as a matter of implementation; not intended for external usestatic class
OperatorProxies.StreamingOperatorProxy
Public only as a matter of implementation; not intended for external use
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OperatorProxies.OperatorProxy
proxy(AbstractLogicalOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.static OperatorProxies.CompositeOperatorProxy
proxy(CompositeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.static OperatorProxies.DeferredCompositeOperatorProxy
proxy(DeferredCompositeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.static OperatorProxies.ExecutableOperatorProxy
proxy(ExecutableOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.static OperatorProxies.IterativeOperatorProxy
proxy(IterativeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.static OperatorProxies.StreamingOperatorProxy
proxy(StreamingOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.
-
-
-
Method Detail
-
proxy
public static OperatorProxies.OperatorProxy proxy(AbstractLogicalOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
proxy
public static OperatorProxies.CompositeOperatorProxy proxy(CompositeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
proxy
public static OperatorProxies.StreamingOperatorProxy proxy(StreamingOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
proxy
public static OperatorProxies.DeferredCompositeOperatorProxy proxy(DeferredCompositeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
proxy
public static OperatorProxies.IterativeOperatorProxy proxy(IterativeOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
proxy
public static OperatorProxies.ExecutableOperatorProxy proxy(ExecutableOperator op)
Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods.- Parameters:
op
- the operator- Returns:
- a proxy
-
-