Package | Description |
---|---|
com.spss.psapi.interaction |
This provides classes used for interactive modeling.
|
com.spss.psapi.session |
This provides support for the construction and use of data mining sessions.
|
com.spss.psapi.task |
This provides objects that create and represent data mining tasks.
|
com.spss.psapi.transform |
This provides objects that perform data processing and model building.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
DecisionListModelInteractor.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
ExecutionHandle |
DecisionListModelInteractor.spawnTask(Task task)
Executes the supplied task asynchronously.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
Session.publish(DataWriter node)
Executes the specified
DataWriter in publish mode to obtain a
PublishedImage . |
ExecutionHandle |
Session.publish(TerminalProcessor node,
boolean inline)
Executes the specified node in publish mode to obtain a
PublishedImage ready for inline scoring. |
ExecutionHandle |
Session.run(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
ExecutionHandle |
Session.run(ProcessorStream stream,
java.util.Collection results)
Executes the supplied stream synchronously and waits for it to complete.
|
ExecutionHandle |
Session.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
ExecutionHandle |
Session.spawn(Processor[] nodes,
java.util.Collection builtObjects)
Executes the supplied array of nodes asynchronously.
|
ExecutionHandle |
Session.spawn(ProcessorStream stream,
java.util.Collection results)
Executes the supplied stream asynchronously.
|
ExecutionHandle |
Session.spawnPublish(DataWriter node)
Executes the specified
DataWriter asynchronously in publish mode to obtain a
PublishedImage . |
ExecutionHandle |
Session.spawnPublish(TerminalProcessor node,
boolean inline)
Executes the specified node asynchronously in publish mode to obtain a
PublishedImage ready for inline scoring. |
ExecutionHandle |
Session.spawnTask(Task task)
Executes the supplied task asynchronously.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
ExecutionStateEvent.getExecutionHandle()
Returns the
ExecutionHandle that raised the event. |
ExecutionHandle |
ExecutionFeedbackEvent.getExecutionHandle()
Returns the
ExecutionHandle that raised the event. |
Modifier and Type | Method and Description |
---|---|
static ExecutionFeedbackEvent |
ExecutionFeedbackEvent.createExecutionFeedbackEvent(ExecutionHandle handle,
int type,
int severity,
int messageId,
java.lang.String message)
Creates a new execution feedback event.
|
static ExecutionFeedbackEvent |
ExecutionFeedbackEvent.createExecutionFeedbackEvent(ExecutionHandle handle,
int type,
int severity,
java.lang.String message)
Creates a new execution feedback event.
|
static ExecutionStateEvent |
ExecutionStateEvent.createExecutionStateEvent(ExecutionHandle handle,
ExecutionState state)
Creates a new execution state event.
|
Constructor and Description |
---|
ExecutionFeedbackEvent(ExecutionHandle handle,
int type,
int severity,
int messageId,
java.lang.String message)
Constructs an
ExecutionFeedbackEvent using the supplied
parameters. |
ExecutionStateEvent(ExecutionHandle handle,
ExecutionState state)
Constructs an
ExecutionStateEvent using the supplied
parameters. |
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
Processor.run(java.util.Collection results)
Executes this node synchronously and waits for execution to complete.
|
ExecutionHandle |
ProcessorStream.runAll(java.util.Collection results)
Executes the stream synchronously and waits for it to complete.
|
ExecutionHandle |
CompositeProcessorDiagram.runAll(java.util.Collection results)
Executes the executable nodes within this sub-stream synchronously and waits for it to complete.
|
ExecutionHandle |
ProcessorStream.runScript(java.util.Collection results)
Executes the stream script synchronously and waits for it to complete.
|
ExecutionHandle |
ProcessorStream.runSelected(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
ExecutionHandle |
CompositeProcessorDiagram.runSelected(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.