simple_async_executor 0.0.1+1 simple_async_executor: ^0.0.1+1 copied to clipboard
Basic async executor for Dart and Flutter
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:simple_async_executor/simple_async_executor.dart';
void main() {
runApp(const Example());
}
class Example extends StatefulWidget {
const Example({Key? key}) : super(key: key);
@override
State<Example> createState() => _ExampleState();
}
class _ExampleState extends State<Example> {
final _stream = StreamController<int>.broadcast();
final _executor = BaseExecutor<void, void>(
maxConcurrentTasks: 1,
);
@override
void initState() {
super.initState();
<AsyncTask<void, void>>[
AsyncTask(0, (_) async => _stream.add(0)),
AsyncTask(1, (_) async => _stream.add(1)),
AsyncTask(2, (_) async => _stream.add(1)),
AsyncTask(3, (_) async => _stream.add(1)),
].forEach(_executor.addTask);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
StreamBuilder<int>(
stream: _stream.stream,
builder: (context, snapshot) {
return Text(
snapshot.data?.toString() ?? '-',
style: Theme.of(context).textTheme.headline4,
);
}),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () => _executor.executeAll(),
tooltip: 'Increment',
child: const Icon(Icons.add),
),
),
);
}
}