gg_once_per_cycle 0.0.1+1 copy "gg_once_per_cycle: ^0.0.1+1" to clipboard
gg_once_per_cycle: ^0.0.1+1 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
}

Features and bugs #

Please file feature requests and bugs at GitHub.

1
likes
0
points
19
downloads

Publisher

verified publisherinlavigo.com

Weekly Downloads

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