本文整理汇总了PHP中Illuminate\Queue\SyncQueue类的典型用法代码示例。如果您正苦于以下问题:PHP SyncQueue类的具体用法?PHP SyncQueue怎么用?PHP SyncQueue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SyncQueue类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: test_queue_with_synchronous_driver_and_in_memory_pubsub_fires_event_with_expected_return_value
public function test_queue_with_synchronous_driver_and_in_memory_pubsub_fires_event_with_expected_return_value()
{
$pubsub = new InMemoryPubSub();
$container = new Container();
$container->singleton(IlluminateQueueHandler::class, function () use($pubsub) {
return new IlluminateQueueHandler($pubsub, new Serializer());
});
$driver = new SyncQueue();
$driver->setContainer($container);
$called = false;
$pubsub->on('kyew:task:random-task-id', function ($publishedValue) use(&$called) {
$this->assertEquals('foo!bar!', $publishedValue);
$called = true;
});
$queue = new IlluminateQueue($driver, new Serializer());
$queue->push('random-task-id', function () {
return 'foo!bar!';
});
$this->assertTrue($called);
}
开发者ID:adamnicholson,项目名称:kyew,代码行数:20,代码来源:IlluminateQueueTest.php
示例2: setEncrypter
/**
* Set the encrypter instance.
*
* @param \Illuminate\Contracts\Encryption\Encrypter $crypt
* @return void
* @static
*/
public static function setEncrypter($crypt)
{
//Method inherited from \Illuminate\Queue\Queue
\Illuminate\Queue\SyncQueue::setEncrypter($crypt);
}
开发者ID:satriashp,项目名称:tour,代码行数:12,代码来源:_ide_helper.php
示例3: setContainer
/**
* Set the IoC container instance.
*
* @param \Illuminate\Container\Container $container
* @return void
* @static
*/
public static function setContainer($container)
{
//Method inherited from \Illuminate\Queue\Queue
\Illuminate\Queue\SyncQueue::setContainer($container);
}
开发者ID:jorzhikgit,项目名称:MLM-Nexus,代码行数:12,代码来源:_ide_helper.php
注:本文中的Illuminate\Queue\SyncQueue类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论