Uses of Class
com.pervasive.datarush.ports.LogicalPortFactory
-
Packages that use LogicalPortFactory Package Description com.pervasive.datarush.analytics.pmml Provides shared and base classes for PMML model representation of Analytics algorithms.com.pervasive.datarush.operators Provides classes and interfaces for developing dataflow operators.com.pervasive.datarush.operators.io.staging Provides operators for reading and writing DataRush staging datasets.com.pervasive.datarush.operators.model Provides operators for handling models.com.pervasive.datarush.ports Provides classes and interfaces related to receiving and sending data in a dataflow graph.com.pervasive.datarush.ports.model Provides implementations of port objects dealing with the flow of single objects between operators.com.pervasive.datarush.ports.record Provides implementations of port objects related to the flow of record sets between operators. -
-
Uses of LogicalPortFactory in com.pervasive.datarush.analytics.pmml
Methods in com.pervasive.datarush.analytics.pmml that return LogicalPortFactory Modifier and Type Method Description LogicalPortFactory<?>
PMMLPort.Metadata. getPortFactory()
-
Uses of LogicalPortFactory in com.pervasive.datarush.operators
Methods in com.pervasive.datarush.operators with parameters of type LogicalPortFactory Modifier and Type Method Description protected <T extends LogicalPort>
TAbstractLogicalOperator. newInput(String name, LogicalPortFactory<T> factory)
Creates a new input port.protected <T extends LogicalPort>
TAbstractLogicalOperator. newInput(String name, LogicalPortFactory<T> factory, boolean optional)
Creates a new input port.protected <T extends LogicalPort>
TAbstractLogicalOperator. newOutput(String name, LogicalPortFactory<T> factory)
Creates a new output port.Constructors in com.pervasive.datarush.operators with parameters of type LogicalPortFactory Constructor Description OpenModelSink(LogicalPortFactory<? extends AbstractModelPort<T>> portFactory)
Create a model sink for the given model port type.OpenModelSource(LogicalPortFactory<? extends AbstractModelPort<T>> portFactory)
Create a model source for the given model port type.OpenMultiModelSink(LogicalPortFactory<? extends AbstractModelPort<T>> portFactory, int numInputs)
Create a model sink for the given model port type.OpenMultiModelSource(LogicalPortFactory<? extends AbstractModelPort<T>> portFactory, int numOutputs)
Create a model source for the given model port type.Constructor parameters in com.pervasive.datarush.operators with type arguments of type LogicalPortFactory Constructor Description OpenComposite(List<? extends LogicalPortFactory<?>> inputs, List<? extends LogicalPortFactory<?>> outputs)
Create an open composite whose input ports and output ports are of arbitrary types. -
Uses of LogicalPortFactory in com.pervasive.datarush.operators.io.staging
Constructors in com.pervasive.datarush.operators.io.staging with parameters of type LogicalPortFactory Constructor Description ForceStaging(LogicalPortFactory<P> factory)
Forces temporary staging of port data. -
Uses of LogicalPortFactory in com.pervasive.datarush.operators.model
Constructors in com.pervasive.datarush.operators.model with parameters of type LogicalPortFactory Constructor Description GetModel(LogicalPortFactory<? extends AbstractModelPort<T>> factory)
Gets a model from a graph.MergeModel(LogicalPortFactory<? extends AbstractModelPort<T>> factory, ModelMergeHandler<T> mergeHandler)
Merge the input modelPutModel(LogicalPortFactory<? extends AbstractModelPort<T>> factory)
Injects a model into a graph.PutModel(LogicalPortFactory<? extends AbstractModelPort<T>> factory, T model)
Injects a model into a graph -
Uses of LogicalPortFactory in com.pervasive.datarush.ports
Methods in com.pervasive.datarush.ports that return LogicalPortFactory Modifier and Type Method Description abstract LogicalPortFactory<?>
LogicalPort. getFactory()
Returns the factory that knows how to create ports of this typeLogicalPortFactory<?>
PortMetadata. getPortFactory()
Public only as a matter of implementation; not intended for external use. -
Uses of LogicalPortFactory in com.pervasive.datarush.ports.model
Subclasses of LogicalPortFactory in com.pervasive.datarush.ports.model Modifier and Type Class Description class
AbstractModelPortFactory<T,P extends AbstractModelPort<T>>
Base class for model port factories.static class
SimpleModelPort.Factory<T extends Serializable>
Factory for creating SimpleModelPortsMethods in com.pervasive.datarush.ports.model that return LogicalPortFactory Modifier and Type Method Description abstract LogicalPortFactory<? extends AbstractModelPort<?>>
AbstractModelPort. getFactory()
LogicalPortFactory<? extends AbstractModelPort<?>>
DoneSignalPort. getFactory()
-
Uses of LogicalPortFactory in com.pervasive.datarush.ports.record
Fields in com.pervasive.datarush.ports.record declared as LogicalPortFactory Modifier and Type Field Description static LogicalPortFactory<RecordPort>
RecordPort. FACTORY
The singleton for creating record ports.Methods in com.pervasive.datarush.ports.record that return LogicalPortFactory Modifier and Type Method Description LogicalPortFactory<?>
RecordPort. getFactory()
LogicalPortFactory<?>
RecordMetadata. getPortFactory()
-