buffer method

  1. @override
Future<List<RxList<T>>> buffer(
  1. int count, {
  2. Duration timeLimit = const Duration(seconds: 10),
})
override

Buffer changes of a Atom. The count is a number of a buffered items. The timeLimit is 10 seconds by default.

Implementation

@override
Future<List<RxList<T>>> buffer(int count, {Duration timeLimit = const Duration(seconds: 10)}) {
  // TODO: implement buffer
  throw UnimplementedError();
}