Rx\Timestamped::__construct PHP 메소드

__construct() 공개 메소드

Timestamped constructor.
public __construct ( integer $timestampMillis, mixed $value )
$timestampMillis integer
$value mixed
    public function __construct($timestampMillis, $value)
    {
        $this->timestampMillis = $timestampMillis;
        $this->value = $value;
    }