CassandraClient::send_get_string_list_property PHP Method

send_get_string_list_property() public method

public send_get_string_list_property ( $property )
    public function send_get_string_list_property($property)
    {
        $args = new cassandra_Cassandra_get_string_list_property_args();
        $args->property = $property;
        $bin_accel = $this->output_ instanceof TProtocol::$TBINARYPROTOCOLACCELERATED && function_exists('thrift_protocol_write_binary');
        if ($bin_accel) {
            thrift_protocol_write_binary($this->output_, 'get_string_list_property', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
        } else {
            $this->output_->writeMessageBegin('get_string_list_property', TMessageType::CALL, $this->seqid_);
            $args->write($this->output_);
            $this->output_->writeMessageEnd();
            $this->output_->getTransport()->flush();
        }
    }