/**
  *
  * @param blaze\io\InputStream $reader The reader
  * @param int $buffsize The size of the buffer which should be used for reading.
  */
 public function __construct(\blaze\io\InputStream $stream, $buffsize = 65536)
 {
     parent::__construct($stream);
     $this->bufferSize = $buffsize;
 }
 /**
  * Creates a wrapper around the given stream which decodes the contents
  * @param blaze\io\InputStream $stream The wrapped stream
  */
 public function __construct(\blaze\io\InputStream $stream)
 {
     parent::__construct($stream);
 }
 /**
  *
  * @param blaze\io\InputStream $reader The reader
  * @param int $buffsize The size of the buffer which should be used for reading.
  */
 public function __construct(\blaze\io\InputStream $stream)
 {
     parent::__construct($stream);
     $this->tokenizer = new \blaze\io\SerializationTokenizer('{', '}');
 }