当前位置: 首页>>代码示例>>PHP>>正文


PHP Pool::__construct方法代码示例

本文整理汇总了PHP中Pool::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Pool::__construct方法的具体用法?PHP Pool::__construct怎么用?PHP Pool::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pool的用法示例。


在下文中一共展示了Pool::__construct方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * @param array                $nodeUrls
  * @param CacheInterface|null  $cache
  * @param LoggerInterface|null $log
  *
  * @throws ConnectException
  */
 public function __construct(array $nodeUrls = array(), CacheInterface $cache = null, LoggerInterface $log = null)
 {
     if (!$cache) {
         $cache = new MemoryCache();
     }
     $this->cache = $cache;
     parent::__construct($nodeUrls, $log);
 }
开发者ID:0x20h,项目名称:phloppy,代码行数:15,代码来源:CachingPool.php

示例2: array

 function __construct($config = array(), $poolSize = 100)
 {
     if (empty($config['host'])) {
         throw new Swoole\Exception\InvalidParam("require redis host option.");
     }
     if (empty($config['port'])) {
         $config = self::DEFAULT_PORT;
     }
     parent::__construct($config, $poolSize);
     $this->create(array($this, 'connect'));
 }
开发者ID:matyhtf,项目名称:swoole_framework,代码行数:11,代码来源:Redis.php

示例3:

 function __construct($config, $maxConnection = 100)
 {
     if (empty($config['host'])) {
         throw new Swoole\Exception\InvalidParam("require mysql host option.");
     }
     if (empty($config['port'])) {
         $config['port'] = self::DEFAULT_PORT;
     }
     parent::__construct($config, $maxConnection);
     $this->create(array($this, 'connect'));
 }
开发者ID:matyhtf,项目名称:swoole_framework,代码行数:11,代码来源:MySQL.php

示例4: __construct

 /**
  * Constructor
  * @param array $config Config variables
  * @param boolean $init
  */
 public function __construct($config = [], $init = true)
 {
     parent::__construct($config, false);
     $this->bound = new \PHPDaemon\Structures\ObjectStorage();
     if (isset($this->config->listen)) {
         $this->bindSockets($this->config->listen->value);
     }
     if ($init) {
         $this->init();
     }
 }
开发者ID:kakserpom,项目名称:phpdaemon,代码行数:16,代码来源:Server.php

示例5: __construct

 public function __construct($size, $class = Worker::class, array $ctor = array())
 {
     $this->pipe = new Pipe();
     $this->packet = new Volatile();
     parent::__construct($size, $class, $ctor);
 }
开发者ID:JesusTheHun,项目名称:GreenMT,代码行数:6,代码来源:Pool.php

示例6: __construct

 public function __construct($size, $class, array $ctor = [])
 {
     parent::__construct($size, $class, $ctor);
 }
开发者ID:domraider,项目名称:rxnet,代码行数:4,代码来源:RxPool.php

示例7: __construct

 public function __construct(CommandBus $bus)
 {
     parent::__construct(5, CommandBusWorker::class, [$bus]);
 }
开发者ID:sjelfull-forks,项目名称:threading-article,代码行数:4,代码来源:9-command-bus.php

示例8: __construct

 /**
  * @param string $path       Cache directory path
  * @param int    $defaultTtl
  */
 public function __construct($path, $defaultTtl = 0)
 {
     parent::__construct($defaultTtl);
     $this->path;
 }
开发者ID:elegantweb,项目名称:framework,代码行数:9,代码来源:FilePool.php

示例9: __construct

 public function __construct($workers = 4, $class = \Worker::class, $ctor = [])
 {
     parent::__construct($workers, $class, $ctor);
 }
开发者ID:krakjoe,项目名称:promises,代码行数:4,代码来源:PromiseManager.php


注:本文中的Pool::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。