Uses of Class
com.pervasive.datarush.ports.LogicalPortFactory
Packages that use LogicalPortFactory
Package
Description
Provides shared and base classes for PMML model representation of Analytics algorithms.
Provides classes and interfaces for developing dataflow operators.
Provides operators for reading and writing DataRush staging datasets.
Provides operators for handling models.
Provides classes and interfaces related to receiving and sending data in a dataflow graph.
Provides implementations of port objects dealing with the flow of single objects
between operators.
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 -
Uses of LogicalPortFactory in com.pervasive.datarush.operators
Methods in com.pervasive.datarush.operators with parameters of type LogicalPortFactoryModifier and TypeMethodDescriptionprotected final <T extends LogicalPort>
TAbstractLogicalOperator.newInput(String name, LogicalPortFactory<T> factory) Creates a new input port.protected final <T extends LogicalPort>
TAbstractLogicalOperator.newInput(String name, LogicalPortFactory<T> factory, boolean optional) Creates a new input port.protected final <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 LogicalPortFactoryModifierConstructorDescriptionOpenModelSink(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 LogicalPortFactoryModifierConstructorDescriptionOpenComposite(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 LogicalPortFactoryModifierConstructorDescriptionprotectedForceStaging(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 LogicalPortFactoryModifierConstructorDescriptionGetModel(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 LogicalPortFactoryModifier and TypeMethodDescriptionabstract LogicalPortFactory<?>LogicalPort.getFactory()Returns the factory that knows how to create ports of this typePortMetadata.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.modelModifier and TypeClassDescriptionclassAbstractModelPortFactory<T,P extends AbstractModelPort<T>> Base class for model port factories.static final classSimpleModelPort.Factory<T extends Serializable>Factory for creating SimpleModelPortsMethods in com.pervasive.datarush.ports.model that return LogicalPortFactoryModifier and TypeMethodDescriptionabstract 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 LogicalPortFactoryModifier and TypeFieldDescriptionstatic final LogicalPortFactory<RecordPort>RecordPort.FACTORYThe singleton for creating record ports.Methods in com.pervasive.datarush.ports.record that return LogicalPortFactory