async_notify 0.0.1 copy "async_notify: ^0.0.1" to clipboard
async_notify: ^0.0.1 copied to clipboard

outdated

Notify wait/notify library.

async_notify

Features #

Notify(wait-notify) support Library.

  • Notify Message(Object)の非同期待ち合わせ.
  • NotifyChannel 非同期の値送信/待ち合わせ.

Getting started #

TODO.

# pubspec.yaml

Usage #

// Notify
final notify = Notify();
await notify.wait(); // wait Notify.notify() call.

// finalize.
notify.dispose();
// NotifyChannel.

final notify = Notify();
final channel = NotifyChannel<int>(notify);

await channel.receive();    // wait NotifyChannel.send(value);

// finalize.
notify.dispose();

Additional information #

0
likes
0
points
17
downloads

Publisher

verified publisherviviware.com

Weekly Downloads

Notify wait/notify library.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, rxdart, tuple

More

Packages that depend on async_notify