manageCompleter<T> abstract method

Completer<T> manageCompleter<T>(
  1. Completer<T> completer
)

Ensure that a completer is completed when the object is disposed.

If the completer has not been completed by the time the object is disposed, it will be completed with an ObjectDisposedException error.

Implementation

Completer<T> manageCompleter<T>(Completer<T> completer);