recvTimeout abstract method

Future<Result<T, RecvTimeoutError>> recvTimeout(
  1. Duration timeLimit
)

Attempts to wait for a value on this receiver with a time limit, returning Err of:

DisconnectedError if the Sender called close and the buffer is empty.

OtherError if the item in the buffer is an error, indicated by the sender calling addError.

TimeoutError if the time limit is reached before the Sender sent any more data.

Implementation

Future<Result<T, RecvTimeoutError>> recvTimeout(Duration timeLimit);