|
long | _expiresTimestamp |
|
int | _capacity |
|
List< T > | _items |
|
bool | IsExpired [getprotected set] |
| Gets a value indicating whether this batch is expired. More...
|
|
long | ExpiresTimestamp [getprotected set] |
| Gets the expires (unix) timestamp. More...
|
|
int | Capacity [get] |
| Gets the batch's max capacity before expiration. More...
|
|
List< T > | Items [getprotected set] |
| Gets or sets the items in this batch. More...
|
|
int | Count [get] |
| Gets the count of elements in the batch. More...
|
|
bool | IsExpired [get] |
| Gets a value indicating whether this batch is expired. More...
|
|
long | ExpiresTimestamp [get] |
| Gets the expires (unix) timestamp. More...
|
|
int | Capacity [get] |
| Gets the batch's max capacity before expiration. More...
|
|
int | Count [get] |
| Gets the count of elements in the batch. More...
|
|
Action< List< T > > | OnExpired |
| Occurs when the batch expires.
|
|
Action< List< T > > | OnExpired |
| Occurs when the batch expires.
|
|
Serializable batch. This is a specialized BatchContainer which is JSON Serializable All elements T added to it must be JSON Serializable
- Type Constraints
-
T | : | class | |
T | : | JsonSerializable.ISerializable | |