Package com.ibm.di.server
Class ALState
- java.lang.Object
-
- com.ibm.di.server.ALState
-
- All Implemented Interfaces:
java.io.Serializable
public class ALState extends java.lang.Object implements java.io.SerializableThis class contains the main steps of the AssemblyLine execution.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description booleanbailoutTrue if exiting "abnormally"intconnectorIndexNext Connector indexlongcycleCounterCurrent cycle countintiteratorIndexCurrent Iterator indexintmainStepCurrent MAIN Stepstatic intMS_BEGINITERBegin iteration step.static intMS_BUILDTCBBuild Task Call Block step.static intMS_CLOSECONNClose connector step.static intMS_DEBUG_CLOSEDeprecated.Not used.static intMS_DEBUG_INITDebug initialization step.static intMS_ENDCYCLEEnd iteration cycle step.static intMS_ENDITEREnd iteration step.static intMS_EPILOGEpilog step.static intMS_EPILOG2Epilog2 step.static intMS_INITCONNInitialize connectors step.static intMS_LOADCONNLoad connectors step.static intMS_NEXTCONNNext connector operation step.static intMS_NEXTITERNext iteration step.static intMS_NOT_INITIALIZEDNot initialized step.static intMS_PROLOGProlog step.static intMS_PROLOG0Prolog0 step.static intMS_STARTStart step.static intMS_TERMINATETermination step.
-
Constructor Summary
Constructors Constructor Description ALState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a string containing the fields
-
-
-
Field Detail
-
MS_NOT_INITIALIZED
public static final int MS_NOT_INITIALIZED
Not initialized step.- See Also:
- Constant Field Values
-
MS_DEBUG_INIT
public static final int MS_DEBUG_INIT
Debug initialization step.- See Also:
- Constant Field Values
-
MS_START
public static final int MS_START
Start step.- See Also:
- Constant Field Values
-
MS_LOADCONN
public static final int MS_LOADCONN
Load connectors step.- See Also:
- Constant Field Values
-
MS_PROLOG0
public static final int MS_PROLOG0
Prolog0 step.- See Also:
- Constant Field Values
-
MS_INITCONN
public static final int MS_INITCONN
Initialize connectors step.- See Also:
- Constant Field Values
-
MS_PROLOG
public static final int MS_PROLOG
Prolog step.- See Also:
- Constant Field Values
-
MS_BEGINITER
public static final int MS_BEGINITER
Begin iteration step.- See Also:
- Constant Field Values
-
MS_NEXTITER
public static final int MS_NEXTITER
Next iteration step.- See Also:
- Constant Field Values
-
MS_NEXTCONN
public static final int MS_NEXTCONN
Next connector operation step.- See Also:
- Constant Field Values
-
MS_ENDCYCLE
public static final int MS_ENDCYCLE
End iteration cycle step.- See Also:
- Constant Field Values
-
MS_ENDITER
public static final int MS_ENDITER
End iteration step.- See Also:
- Constant Field Values
-
MS_EPILOG
public static final int MS_EPILOG
Epilog step.- See Also:
- Constant Field Values
-
MS_CLOSECONN
public static final int MS_CLOSECONN
Close connector step.- See Also:
- Constant Field Values
-
MS_BUILDTCB
public static final int MS_BUILDTCB
Build Task Call Block step.- See Also:
- Constant Field Values
-
MS_EPILOG2
public static final int MS_EPILOG2
Epilog2 step.- See Also:
- Constant Field Values
-
MS_DEBUG_CLOSE
public static final int MS_DEBUG_CLOSE
Deprecated.Not used.- See Also:
- Constant Field Values
-
MS_TERMINATE
public static final int MS_TERMINATE
Termination step.- See Also:
- Constant Field Values
-
mainStep
public volatile int mainStep
Current MAIN Step
-
connectorIndex
public int connectorIndex
Next Connector index
-
iteratorIndex
public int iteratorIndex
Current Iterator index
-
cycleCounter
public long cycleCounter
Current cycle count
-
bailout
public boolean bailout
True if exiting "abnormally"
-
-