Icicle\Concurrent\Threading\Thread::__clone PHP Method

__clone() public method

Returns the thread to the condition before starting. The new thread can be started and run independently of the first thread.
public __clone ( )
    public function __clone()
    {
        $this->thread = null;
        $this->socket = null;
        $this->pipe = null;
        $this->channel = null;
        $this->oid = 0;
    }