📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
binsoul
/
net-mqtt
/
src
📝
Flow.php
← Geri Dön
<?php namespace BinSoul\Net\Mqtt; /** * Represents a sequence of packages exchanged between clients and brokers. */ interface Flow { /** * Returns the unique code. * * @return string */ public function getCode(); /** * Starts the flow. * * @return Packet|null First packet of the flow * * @throws \Exception */ public function start(); /** * Indicates if the flow can handle the given packet. * * @param Packet $packet Packet to accept * * @return bool */ public function accept(Packet $packet); /** * Continues the flow. * * @param Packet $packet Packet to respond * * @return Packet|null Next packet of the flow */ public function next(Packet $packet); /** * Indicates if the flow is finished. * * @return bool */ public function isFinished(); /** * Indicates if the flow finished successfully. * * @return bool */ public function isSuccess(); /** * Returns the result of the flow if it finished successfully. * * @return mixed */ public function getResult(); /** * Returns an error message if the flow didn't finish successfully. * * @return string */ public function getErrorMessage(); }
💾 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