Esempio n. 1
0
 public function __construct()
 {
     if (!isset(self::$_TSPEC)) {
         self::$_TSPEC = array();
     }
 }
 public function recv_setOption()
 {
     $bin_accel = $this->input_ instanceof TProtocol::$TBINARYPROTOCOLACCELERATED && function_exists('thrift_protocol_read_binary');
     if ($bin_accel) {
         $result = thrift_protocol_read_binary($this->input_, 'FacebookService_setOption_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_setOption_result();
         $result->read($this->input_);
         $this->input_->readMessageEnd();
     }
     return;
 }
Esempio n. 3
0
 protected function process_setOption($seqid, $input, $output)
 {
     $args = new FacebookService_setOption_args();
     $args->read($input);
     $input->readMessageEnd();
     $result = new FacebookService_setOption_result();
     $this->handler_->setOption($args->key, $args->value);
     $output->writeMessageBegin('setOption', TMessageType::REPLY, $seqid);
     $result->write($output);
     $output->getTransport()->flush();
 }