This commit is contained in:
2021-04-22 12:03:29 +08:00
parent 978cc92dad
commit d6ceac9852
+4
View File
@@ -33,6 +33,8 @@ class Channel extends Component
*/ */
public function push(mixed $value, string $name = '', $length = 999): mixed public function push(mixed $value, string $name = '', $length = 999): mixed
{ {
return true;
$channel = $this->channelInit($length, $name); $channel = $this->channelInit($length, $name);
if ($channel->isFull()) { if ($channel->isFull()) {
return $this->addError('Channel is full.'); return $this->addError('Channel is full.');
@@ -76,6 +78,8 @@ class Channel extends Component
*/ */
public function cleanAll() public function cleanAll()
{ {
return;
/** @var CChannel $channel */ /** @var CChannel $channel */
foreach ($this->_channels as $channel) { foreach ($this->_channels as $channel) {
$channel->close(); $channel->close();