예제 #1
0
파일: datum.php 프로젝트: wikimedia/avro
 /**
  * @param int $offset
  * @param int $whence
  * @return boolean true upon success
  * @uses AvroIO::seek()
  */
 private function seek($offset, $whence)
 {
     return $this->io->seek($offset, $whence);
 }
예제 #2
0
 /**
  * @uses AvroIO::is_eof()
  */
 private function is_eof()
 {
     return $this->io->is_eof();
 }