gg_once_per_cycle 1.1.0 copy "gg_once_per_cycle: ^1.1.0" to clipboard
gg_once_per_cycle: ^1.1.0 copied to clipboard

outdated

Use GgOncePerCycle to trigger tasks multiple times while ensuring they are only executed one time during a run loop cycle.

Trigger tasks multiple times, but execute them only one time per run loop cycle #

Use GgOncePerCycle to trigger tasks multiple times while ensuring they are only executed one time during a run loop cycle.

Usage #

A simple usage example:

import 'package:gg_once_per_cycle/gg_once_per_cycle.dart';

void main() async {
  // Create a task
  var counter = 0;
  final task = () => print('Task ${++counter}');

  // Give the task to a OncePerCycle instance
  final oncePerCycle = GgOncePerCycle(task: task);

  // Trigger the task multiple times
  oncePerCycle.trigger();
  oncePerCycle.trigger();
  oncePerCycle.trigger();

  // Wait for the next cycle
  await Future.delayed(Duration(microseconds: 1));

  // The task has only called one time
  assert(counter == 1);

  // Now we are in the next cycle and trigger the task again
  oncePerCycle.trigger();
  oncePerCycle.trigger();

  await Future.delayed(Duration(microseconds: 1));

  // And again the task has called only one other time
  assert(counter == 2);

  // Output:
  // Task 1
  // Task 2

  // Finally dispose the trigger to prevent that things
  // are executed lately.
  oncePerCycle.dispose();

  oncePerCycle.trigger();

  // Output:
  // No output, because previous dispose
}

Features and bugs #

Please file feature requests and bugs at GitHub.

1
likes
0
pub points
39%
popularity

Publisher

verified publisherinlavigo.com

Use GgOncePerCycle to trigger tasks multiple times while ensuring they are only executed one time during a run loop cycle.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on gg_once_per_cycle