Package com.hmsonline.storm.cassandra.bolt.mapper

Examples of com.hmsonline.storm.cassandra.bolt.mapper.DefaultTupleCounterMapper


        this.tupleMapper = tupleMapper;
    }

    @SuppressWarnings("unchecked")
  public CassandraCounterBatchingBolt(String keyspace, String clientConfigKey, String columnFamily, String rowKeyField, String incrementAmountField) {
        this(clientConfigKey, (TupleCounterMapper<K, C>) new DefaultTupleCounterMapper(keyspace, columnFamily, rowKeyField, incrementAmountField) );
    }
View Full Code Here

TOP

Related Classes of com.hmsonline.storm.cassandra.bolt.mapper.DefaultTupleCounterMapper

Copyright © 2018 www.massapicom. 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.