Uses of Class
com.pervasive.datarush.ports.model.AbstractModelPort
-
Packages that use AbstractModelPort 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.model Provides operators for handling models.com.pervasive.datarush.ports.model Provides implementations of port objects dealing with the flow of single objects between operators. -
-
Uses of AbstractModelPort in com.pervasive.datarush.analytics.pmml
Subclasses of AbstractModelPort in com.pervasive.datarush.analytics.pmml Modifier and Type Class Description class
PMMLPort
Specialization of model ports for handling PMML models. -
Uses of AbstractModelPort in com.pervasive.datarush.operators
Methods in com.pervasive.datarush.operators that return AbstractModelPort Modifier and Type Method Description AbstractModelPort<T>
OpenModelSink. getInput()
AbstractModelPort<T>
OpenModelSource. getOutput()
Methods in com.pervasive.datarush.operators that return types with arguments of type AbstractModelPort Modifier and Type Method Description List<AbstractModelPort<T>>
OpenMultiModelSink. getInputs()
List<AbstractModelPort<T>>
OpenMultiModelSource. getOutputs()
Methods in com.pervasive.datarush.operators with parameters of type AbstractModelPort Modifier and Type Method Description void
OpenModelSink. connectInput(AbstractModelPort<T> to)
void
OpenMultiModelSink. connectInput(int index, AbstractModelPort<T> to)
void
OpenModelSource. connectOutput(AbstractModelPort<T> from)
void
OpenMultiModelSource. connectOutput(AbstractModelPort<T> from, int index)
void
MetadataCalculationContext. setOutputMetadataDynamic(AbstractModelPort<?> port, boolean dynamic)
Indicates that the metadata for the given output port is dynamic.Constructor parameters in com.pervasive.datarush.operators with type arguments of type AbstractModelPort 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. -
Uses of AbstractModelPort in com.pervasive.datarush.operators.model
Methods in com.pervasive.datarush.operators.model that return AbstractModelPort Modifier and Type Method Description AbstractModelPort<T>
GetModel. getInput()
The input portAbstractModelPort<T>
MergeModel. getInput()
Returns the input port for the partial modelAbstractModelPort<T>
MergeModel. getOutput()
Returns the output port that will produce the final modelAbstractModelPort<T>
PutModel. getOutput()
Returns the output port which will transmit the model during graph executionConstructor parameters in com.pervasive.datarush.operators.model with type arguments of type AbstractModelPort 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 AbstractModelPort in com.pervasive.datarush.ports.model
Classes in com.pervasive.datarush.ports.model with type parameters of type AbstractModelPort Modifier and Type Class Description class
AbstractModelPortFactory<T,P extends AbstractModelPort<T>>
Base class for model port factories.Subclasses of AbstractModelPort in com.pervasive.datarush.ports.model Modifier and Type Class Description class
DoneSignalPort
Used to coordinate processing between operators that have a processing dependency but no explicit data dependency.class
SimpleModelPort<T extends Serializable>
A simple implementation for model ports.Methods in com.pervasive.datarush.ports.model that return types with arguments of type AbstractModelPort Modifier and Type Method Description abstract LogicalPortFactory<? extends AbstractModelPort<?>>
AbstractModelPort. getFactory()
LogicalPortFactory<? extends AbstractModelPort<?>>
DoneSignalPort. getFactory()
-