📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
valga
/
fbns-react
/
src
/
Lite
📝
ReactFlow.php
← Geri Dön
<?php /* * This file is part of net-mqtt-client-react. * * Copyright (c) 2015 Sebastian Mößler code@binsoul.de * * This source file is subject to the MIT license. */ namespace Fbns\Client\Lite; use BinSoul\Net\Mqtt\Flow; use BinSoul\Net\Mqtt\Packet; use React\Promise\Deferred; /** * Decorates flows with data required for the {@see ReactMqttClient} class. */ class ReactFlow implements Flow { /** @var Flow */ private $decorated; /** @var Deferred */ private $deferred; /** @var Packet */ private $packet; /** @var bool */ private $isSilent; /** * Constructs an instance of this class. * * @param Flow $decorated * @param Deferred $deferred * @param Packet $packet * @param bool $isSilent */ public function __construct(Flow $decorated, Deferred $deferred, Packet $packet = null, $isSilent = false) { $this->decorated = $decorated; $this->deferred = $deferred; $this->packet = $packet; $this->isSilent = $isSilent; } public function getCode() { return $this->decorated->getCode(); } public function start() { $this->packet = $this->decorated->start(); return $this->packet; } public function accept(Packet $packet) { return $this->decorated->accept($packet); } public function next(Packet $packet) { $this->packet = $this->decorated->next($packet); return $this->packet; } public function isFinished() { return $this->decorated->isFinished(); } public function isSuccess() { return $this->decorated->isSuccess(); } public function getResult() { return $this->decorated->getResult(); } public function getErrorMessage() { return $this->decorated->getErrorMessage(); } /** * Returns the associated deferred. * * @return Deferred */ public function getDeferred() { return $this->deferred; } /** * Returns the current packet. * * @return Packet */ public function getPacket() { return $this->packet; } /** * Indicates if the flow should emit events. * * @return bool */ public function isSilent() { return $this->isSilent; } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula