Giter Club home page Giter Club logo

Comments (4)

cboden avatar cboden commented on May 21, 2024

Part of this issue was on a write error Ratchet tried to send another message (lol) as pointed out in ratchetphp/Ratchet#137. That has been resolved in ratchetphp/Ratchet#200.

I still have a concern that if a write error occurs (attempting to write to a closed stream) and the developer does not take the appropriate action the resources will not be cleaned up...If !is_resource() or feof() are detected that will not change, I wonder if in addition to the error emission React should clean up the resources at that point.

from stream.

steverhoades avatar steverhoades commented on May 21, 2024

Would it make sense in this case for the stream to keep track of it's closed state? For instance:

class Stream extends EventEmitter implements ReadableStreamInterface, WritableStreamInterface
{
    public $bufferSize = 4096;
    public $stream;
    protected $readable = true;
    protected $writable = true;
    protected $closing = false;
    protected $loop;
    protected $buffer;
    protected $closed = false; //<--- NEW

    public function __construct($stream, LoopInterface $loop)
    {
        $this->buffer->on('error', function ($error) {
            if($this->closed) {
                return;
            }
            $this->emit('error', array($error, $this));
            $this->close();
        });
    }

    public function handleClose()
    {
        if (is_resource($this->stream)) {
            fclose($this->stream);
        }
        $this->closed = true;
    }
}

from stream.

bohdanly avatar bohdanly commented on May 21, 2024

Hi, take a look on #25. Same issue.

from stream.

clue avatar clue commented on May 21, 2024

We believe this has been fixed as part of #25 and #40 👍 A release will be tagged soon, please report back if this problem persists!

from stream.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.