sepModel.addSubscription(SUBSCRIPTION_WITH_PAYLOADS_NAME);
eventListener = new TestEventListener();
eventListenerWithPayloads = new TestEventListener();
sepConsumer = new SepConsumer(SUBSCRIPTION_NAME, System.currentTimeMillis(), eventListener, 3, "localhost",
zkItf, clusterConf);
PayloadExtractor payloadExtractor = new BasePayloadExtractor(TABLE_NAME, PAYLOAD_COL_FAMILY, PAYLOAD_COL_QUALIFIER);
sepConsumerWithPayloads = new SepConsumer(SUBSCRIPTION_WITH_PAYLOADS_NAME, System.currentTimeMillis(), eventListenerWithPayloads, 3, "localhost", zkItf, clusterConf, payloadExtractor);
sepConsumer.start();
sepConsumerWithPayloads.start();
}