當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。