dmamontov/asynctask
最新稳定版本:1.0.5
Composer 安装命令:
composer require dmamontov/asynctask
包简介
AsyncTask enables proper and easy use of the thread. This class allows to perform background operations and publish results on the thread without having to manipulate threads and/or handlers.
README 文档
README
OBSOLETE. The current class is available at the following link.
AsyncTask
AsyncTask enables proper and easy use of the thread. This class allows to perform background operations and publish results on the thread without having to manipulate threads and/or handlers. More information.
Requirements
- PHP version ~5.3.3
- Module installed pcntl and posix
- All functions pcntl, posix and shm removed from the directive disable_functions
Installation
-
Install composer
-
Follow in the project folder:
composer require dmamontov/asynctask ~1.0.5
In config composer.json your project will be added to the library dmamontov/asynctask, who settled in the folder vendor/. In the absence of a config file or folder with vendors they will be created.
If before your project is not used composer, connect the startup file vendors. To do this, enter the code in the project:
require 'path/to/vendor/autoload.php';
Example of work
class TestTask extends AsyncTask { protected function onPreExecute() { } protected function doInBackground($parameters) { return $parameters; } protected function onPostExecute($result) { echo $result; } } $task = new TestTask(); $task->execute('test');
统计信息
- 总下载量: 2.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 60
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-04-18