ChannelWorker.Handle<'T> Type
Handle for a running channel worker. Post items for background processing.
Instance members
| Instance member |
Description
|
|
The task representing the worker loop. Completes when cancelled.
|
Full Usage:
this.PendingCount
Returns: int
|
Current number of queued (unprocessed) items.
|
Full Usage:
this.Post
Parameters:
'T
-
The item to enqueue for processing.
|
Post an item for background processing. Non-blocking, unbounded. Safe to call after cancellation (silently ignored).
|
TDesu.FSharp