ThreadTimeout Class |
Namespace: Tangosol.Util
public class ThreadTimeout : IDisposable
The ThreadTimeout type exposes the following members.
Name | Description | |
---|---|---|
![]() | ThreadTimeout |
Specify a new timeout.
|
Name | Description | |
---|---|---|
![]() ![]() | IsTimedOut |
Whether the calling thread is timed out.
|
![]() ![]() | RemainingTimeoutMillis |
The number of remaining milliseconds before this thread will time out,
0 if timed out, or MaxValue if disabled.
|
Name | Description | |
---|---|---|
![]() ![]() | After(Int32) |
Specify a new timeout. Note that the calling thread's timeout will only be
changed if the specified timeout is less then any existing timeout already
active on the thread.
|
![]() ![]() | After(TimeSpan) |
Specify a new timeout. Note that the calling thread's timeout will only be
changed if the specified timeout is less than any existing timeout already
active on the thread.
|
![]() | Dispose |
As part of closing the ThreadTimeout resource any former timeout will be restored.
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | Override |
Specify a new timeout, potentially extending an already active timeout.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() | f_cMillisTimeout |
This ThreadTimeout's timeout.
|
![]() | f_lhTimeout |
Cached reference to the thread's ThreadTimeoutLongHolder holding it's current timeout.
|
![]() | f_lTimeoutOrig |
The original timeout before this instance changed it.
|
![]() | f_tloCreator |
True iff this Timeout created (and thus must ultimately destroy) the TLO.
|
![]() ![]() | s_tloTimeout |
A thread-local containing the calling thread's timeout value. Values which are greater or equal to zero
are used to indicate timeout timestamps. Negative values are relative timeouts which haven't yet been
realized into a timestamp. This allows for an optimization where we can avoid obtaining
the current time when "setting" the timeout, and defer it until we are about to block.
|