TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

class BeginEnd in Tinman.Core.Util

Implementation of the IBeginEnd interface that computes the balance between calls to Begin and End.

sealed class BeginEnd implements IBeginEnd

Public / Attributes

Balance

Balance between calls to Begin (+1) and calls to End (-1).

public property Balance { get }
type int32
value [>=0] The call balance.

IsActive

public property IsActive { get }
type bool
value

Public / Methods

Begin

Begins an access to this object.

public method Begin ()
implements IBeginEnd.Begin

Remarks:

See the documentation of the class which implements this interface for details on the operations that must be wrapped in Begin and End calls.

See also:

BeginEnd

End

Ends the current access to this object.

public method End ()
implements IBeginEnd.End

Remarks:

See the documentation of the class which implements this interface for details on the operations that must be wrapped in Begin and End calls.

See also:

BeginEnd