Package com.netflix.astyanax.test

Examples of com.netflix.astyanax.test.SessionEvent


        for (int i = 0; i < 10; i++) {
            String sessionId = "Session" + i;

            for (int j = 0; j < 10; j++) {
                m.withRow(CF_CLICK_STREAM, userId).putColumn(
                        new SessionEvent(sessionId,
                                TimeUUIDUtils.getTimeUUID(j)),
                        Long.toString(timeCounter), null);
                timeCounter++;
            }
        }
View Full Code Here


    for (int i = 0; i < 10; i++) {
      String sessionId = "Session" + i;

      for (int j = 0; j < 10; j++) {
        m.withRow(CF_CLICK_STREAM, userId).putColumn(
            new SessionEvent(sessionId, uuids.get(j)),
            Long.toString(timeCounter), null);
        timeCounter++;
      }
    }
View Full Code Here

TOP

Related Classes of com.netflix.astyanax.test.SessionEvent

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.