📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
binsoul
/
net-mqtt
/
src
📝
Message.php
← Geri Dön
<?php namespace BinSoul\Net\Mqtt; /** * Represents a message. */ interface Message { /** * Returns the topic. * * @return string */ public function getTopic(); /** * Returns the payload. * * @return string */ public function getPayload(); /** * Returns the quality of service level. * * @return int */ public function getQosLevel(); /** * Indicates if the message is a duplicate. * * @return bool */ public function isDuplicate(); /** * Indicates if the message is retained. * * @return bool */ public function isRetained(); /** * Returns a new message with the given topic. * * @param string $topic * * @return self */ public function withTopic($topic); /** * Returns a new message with the given payload. * * @param string $payload * * @return self */ public function withPayload($payload); /** * Returns a new message with the given quality of service level. * * @param int $level * * @return self */ public function withQosLevel($level); /** * Returns a new message flagged as retained. * * @return self */ public function retain(); /** * Returns a new message flagged as not retained. * * @return self */ public function release(); /** * Returns a new message flagged as duplicate. * * @return self */ public function duplicate(); /** * Returns a new message flagged as original. * * @return self */ public function original(); }
💾 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