Gets or sets the logical unit of work (LUW) token for the request.

Namespace:  IBM.CTG
Assembly:  IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 1.0.0.0

Syntax

C#
public int LuwToken { get; set; }
Visual Basic
Public Property LuwToken As Integer
	Get
	Set
Visual C++
public:
property int LuwToken {
	int get ();
	void set (int value);
}

Field Value

The logical unit of work (LUW) token.

Remarks

The following table describes how the ExtendMode and LuwToken properties affect the behavior of the ECI request.

ExtendModeLuwToken before flowLuwToken after flowBehavior
EciNoExtendZeroZeroExecutes the request and commits all changes to recoverable resources.
EciNoExtendExisting LUW tokenZeroExecutes the request within an existing logical unit of work (LUW) and commits all changes to recoverable resources to terminate the LUW.
EciExtendedZeroNew LUW tokenCreates a new logical unit of work (LUW), and returns the new LUW token.
EciExtendedExisting LUW tokenExisting LUW tokenExecutes the request within an existing logical unit of work (LUW).
EciCommitExisting LUW tokenUndefinedTerminates the logical unit of work (LUW), committing all changes to recoverable resources.
EciBackOutExisting LUW tokenUndefinedTerminates the logical unit of work (LUW), backing out all changes to recoverable resources.

See Also