Overview

Namespaces

  • cassandra
  • None
  • PHP
  • phpcassa
    • Batch
    • Connection
    • Index
    • Iterator
    • Schema
      • DataType
    • Util
    • UUID

Classes

  • AuthenticationRequest
  • CassandraClient
  • CfDef
  • Column
  • ColumnDef
  • ColumnOrSuperColumn
  • ColumnParent
  • ColumnPath
  • Compression
  • ConsistencyLevel
  • CounterColumn
  • CounterSuperColumn
  • CqlMetadata
  • CqlPreparedResult
  • CqlResult
  • CqlResultType
  • CqlRow
  • Deletion
  • EndpointDetails
  • IndexClause
  • IndexExpression
  • IndexOperator
  • IndexType
  • KeyCount
  • KeyRange
  • KeySlice
  • KsDef
  • Mutation
  • SlicePredicate
  • SliceRange
  • SuperColumn
  • TokenRange

Interfaces

  • CassandraIf

Exceptions

  • AuthenticationException
  • AuthorizationException
  • InvalidRequestException
  • NotFoundException
  • SchemaDisagreementException
  • TimedOutException
  • UnavailableException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: /**
 3:  *  @generated
 4:  */
 5: namespace cassandra;
 6: class CqlRow extends \TBase {
 7:   static $_TSPEC;
 8: 
 9:   public $key = null;
10:   public $columns = null;
11: 
12:   public function __construct($vals=null) {
13:     if (!isset(self::$_TSPEC)) {
14:       self::$_TSPEC = array(
15:         1 => array(
16:           'var' => 'key',
17:           'type' => \TType::STRING,
18:           ),
19:         2 => array(
20:           'var' => 'columns',
21:           'type' => \TType::LST,
22:           'etype' => \TType::STRUCT,
23:           'elem' => array(
24:             'type' => \TType::STRUCT,
25:             'class' => '\cassandra\Column',
26:             ),
27:           ),
28:         );
29:     }
30:     if (is_array($vals)) {
31:       parent::__construct(self::$_TSPEC, $vals);
32:     }
33:   }
34: 
35:   public function getName() {
36:     return 'CqlRow';
37:   }
38: 
39:   public function read($input)
40:   {
41:     return $this->_read('CqlRow', self::$_TSPEC, $input);
42:   }
43:   public function write($output) {
44:     return $this->_write('CqlRow', self::$_TSPEC, $output);
45:   }
46: }
47: 
48: 
49: ?>
50: 
phpcassa API documentation generated by ApiGen 2.8.0