disposables

Creator: coderz1093

Last updated:

Add to Cart

Description:

disposables

Simple library to manage objects needing to release its own resources.
Disposable #
final sink = StreamController();
final disposable = Disposable(() => sink.close());
disposable.dispose();
copied to clipboard
For more complex disposable object you can implement the Disposable interface yourself.
class SomeObject implements Disposable {
@override
bool isDisposed = false;
@override
void dispose() {
isDisposed = true;
}
}
copied to clipboard
DisposableCollection #
final disposables = [SomeObject(), SomeObject(), disposable];
final collection = DisposableCollection(disposables);
collection.dispose();
copied to clipboard
If you want to compose disposables into without mutating after creation consider using compose.
final disposable = Disposable.compose(disposables);
disposable.dispose();
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.