示例#1
0
 public function __construct($vals = null)
 {
     if (!isset(self::$_TSPEC)) {
         self::$_TSPEC = array(0 => array('var' => 'success', 'type' => TType::MAP, 'ktype' => TType::STRING, 'vtype' => TType::I64, 'key' => array('type' => TType::STRING), 'val' => array('type' => TType::I64)));
     }
     if (is_array($vals)) {
         if (isset($vals['success'])) {
             $this->success = $vals['success'];
         }
     }
 }
 public function recv_getCounters()
 {
     $bin_accel = $this->input_ instanceof TProtocol::$TBINARYPROTOCOLACCELERATED && function_exists('thrift_protocol_read_binary');
     if ($bin_accel) {
         $result = thrift_protocol_read_binary($this->input_, 'FacebookService_getCounters_result', $this->input_->isStrictRead());
     } else {
         $rseqid = 0;
         $fname = null;
         $mtype = 0;
         $this->input_->readMessageBegin($fname, $mtype, $rseqid);
         if ($mtype == TMessageType::EXCEPTION) {
             $x = new TApplicationException();
             $x->read($this->input_);
             $this->input_->readMessageEnd();
             throw $x;
         }
         $result = new FacebookService_getCounters_result();
         $result->read($this->input_);
         $this->input_->readMessageEnd();
     }
     if ($result->success !== null) {
         return $result->success;
     }
     throw new Exception("getCounters failed: unknown result");
 }
示例#3
0
 protected function process_getCounters($seqid, $input, $output)
 {
     $args = new FacebookService_getCounters_args();
     $args->read($input);
     $input->readMessageEnd();
     $result = new FacebookService_getCounters_result();
     $result->success = $this->handler_->getCounters();
     $output->writeMessageBegin('getCounters', TMessageType::REPLY, $seqid);
     $result->write($output);
     $output->getTransport()->flush();
 }