*/
private $outputStreamInstance = null;
+ /**
+ * Networkable handler instance
+ */
+ private $handlerInstance = null;
+
/**
* The real class name
*/
$this->outputStreamInstance = $outputStreamInstance;
}
+ /**
+ * Setter for handler instance
+ *
+ * @param $handlerInstance A Networkable instance
+ * @return void
+ */
+ protected final function setHandlerInstance (Networkable $handlerInstance) {
+ $this->handlerInstance = $handlerInstance;
+ }
+
+ /**
+ * Getter for handler instance
+ *
+ * @return $handlerInstance A Networkable instance
+ */
+ protected final function getHandlerInstance () {
+ return $this->handlerInstance;
+ }
+
/**
* Setter for raw package Data
*