Icicle\Observable\Internal\EmitQueue::__construct PHP Method

__construct() public method

public __construct ( Icicle\Observable\Observable $observable )
$observable Icicle\Observable\Observable
    public function __construct(Observable $observable)
    {
        $this->observable = $observable;
        $this->delayed = new Delayed();
        $this->placeholder = new Placeholder($this->delayed);
    }