文件名称:dart_async_commands:Google Dart的异步命令
文件大小:16KB
文件格式:ZIP
更新时间:2024-05-30 23:47:55
Dart
关于 AsyncCommands是一个轻量级的命令系统。 命令的主要目标是将您的业务逻辑组织到封装的块中, 提高应用程序的可读性,模块化和可测试性。 命令与所有MV *模式都很好地集成在一起。 如何:使用AsyncCommands AsyncCommands是短暂的对象,封装了业务逻辑。 参数通过构造函数传递(而不是通过execute()方法传递)。 命令完成后(通过调用complete()方法),将来会返回CommandResult对象。 创建一个AsyncCommand Class LoginCommand extends AsyncCommand { final String username; final String password; LoginCommand ( this .username, this .password) : super ( '
【文件预览】:
dart_async_commands-master
----pubspec.yaml(315B)
----lib()
--------async_commands.dart(256B)
--------impl()
--------api()
----example()
--------guards()
--------commands()
--------single_command_example.dart(1015B)
--------chained_commands_example.dart(481B)
--------hooks()
--------command_runner_example.dart(2KB)
----LICENSE(1KB)
----test()
--------impl()
--------api()
--------async_commands_test_suite.dart(653B)
----README.md(4KB)
----.gitignore(614B)