Uses of Interface
me.prettyprint.hector.api.ddl.KeyspaceDefinition

Packages that use KeyspaceDefinition
me.prettyprint.cassandra.model The model package defines the thrift/avro reflections used by hector to shield the specific types of the objects. 
me.prettyprint.cassandra.service   
me.prettyprint.hector.api The api package defines the main hector api entry points (aka the v2 API) 
me.prettyprint.hector.api.factory   
 

Uses of KeyspaceDefinition in me.prettyprint.cassandra.model
 

Classes in me.prettyprint.cassandra.model that implement KeyspaceDefinition
 class BasicKeyspaceDefinition
          Created by IntelliJ IDEA.
 

Uses of KeyspaceDefinition in me.prettyprint.cassandra.service
 

Classes in me.prettyprint.cassandra.service that implement KeyspaceDefinition
 class ThriftKsDef
           
 

Methods in me.prettyprint.cassandra.service that return KeyspaceDefinition
 KeyspaceDefinition AbstractCluster.describeKeyspace(String keyspace)
           
 

Methods in me.prettyprint.cassandra.service that return types with arguments of type KeyspaceDefinition
 List<KeyspaceDefinition> AbstractCluster.describeKeyspaces()
           
static List<KeyspaceDefinition> ThriftKsDef.fromThriftList(List<org.apache.cassandra.thrift.KsDef> ks)
           
 

Methods in me.prettyprint.cassandra.service with parameters of type KeyspaceDefinition
 String ThriftCluster.addKeyspace(KeyspaceDefinition ksdef)
           
 String ThriftCluster.addKeyspace(KeyspaceDefinition ksdef, boolean blockUntilComplete)
           
 String ThriftCluster.updateKeyspace(KeyspaceDefinition ksdef)
           
 String ThriftCluster.updateKeyspace(KeyspaceDefinition ksdef, boolean blockUntilComplete)
           
 

Constructors in me.prettyprint.cassandra.service with parameters of type KeyspaceDefinition
ThriftKsDef(KeyspaceDefinition keyspaceDefinition)
           
 

Uses of KeyspaceDefinition in me.prettyprint.hector.api
 

Methods in me.prettyprint.hector.api that return KeyspaceDefinition
 KeyspaceDefinition Cluster.describeKeyspace(String keyspace)
           
 

Methods in me.prettyprint.hector.api that return types with arguments of type KeyspaceDefinition
 List<KeyspaceDefinition> Cluster.describeKeyspaces()
           
 

Methods in me.prettyprint.hector.api with parameters of type KeyspaceDefinition
 String Cluster.addKeyspace(KeyspaceDefinition ksdef)
          Add a keyspace and does not wait for schema agreement.
 String Cluster.addKeyspace(KeyspaceDefinition ksdef, boolean blockUntilComplete)
          Add a keyspace and wait for schema cluster agreement if blockUntilComplete is set to true.
 String Cluster.updateKeyspace(KeyspaceDefinition ksdef)
          Updates the Keyspace from the cluster without waiting for schema agreement.
 String Cluster.updateKeyspace(KeyspaceDefinition ksdef, boolean blockUntilComplete)
          Updates the Keyspace and wait for schema cluster agreement if blockUntilComplete is set to true.
 

Uses of KeyspaceDefinition in me.prettyprint.hector.api.factory
 

Methods in me.prettyprint.hector.api.factory that return KeyspaceDefinition
static KeyspaceDefinition HFactory.createKeyspaceDefinition(String keyspace)
          Use createKeyspaceDefinition to add a new Keyspace to cluster.
static KeyspaceDefinition HFactory.createKeyspaceDefinition(String keyspaceName, String strategyClass, int replicationFactor, List<ColumnFamilyDefinition> cfDefs)
          Use createKeyspaceDefinition to add a new Keyspace to cluster.
 



Copyright © 2011. All Rights Reserved.