Package com.netflix.astyanax.thrift.ddl

Examples of com.netflix.astyanax.thrift.ddl.ThriftKeyspaceDefinitionImpl.addColumnFamily()


            final Map<String, Object> options,
            final Map<ColumnFamily, Map<String, Object>> cfs) throws ConnectionException {
       
        ThriftKeyspaceDefinitionImpl ksDef = toThriftKeyspaceDefinition(options);
        for (Entry<ColumnFamily, Map<String, Object>> cf : cfs.entrySet()) {
            ksDef.addColumnFamily(toThriftColumnFamilyDefinition(cf.getValue(), cf.getKey()));
        }
       
        ksDef.setName(getKeyspaceName());

        return internalCreateKeyspace(ksDef.getThriftKeyspaceDefinition());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.