reviewed: mcslee
revert: yes
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664911
13f79535-47bb-0310-9956-
ffa450edef68
$this->write_ = $write;
}
+ public function isOpen() {
+ return $this->transport_->isOpen();
+ }
+
+ public function open() {
+ $this->transport_->open();
+ }
+
+ public function close() {
+ $this->transport_->close();
+ }
+
/**
* Reads from the buffer. When more data is required reads another entire
* chunk and serves future reads out of that.