All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alogic.event.handler.Debug Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.event.handler;

import org.w3c.dom.Element;

import com.alogic.event.Event;
import com.anysoft.stream.AbstractHandler;
import com.anysoft.util.Properties;

/**
 * 用于调试
 * @author yyduan
 *
 */
public class Debug extends AbstractHandler {

	@Override
	protected void onHandle(Event data, long timestamp) {
		LOG.info(data.toString());
	}

	@Override
	protected void onFlush(long timestamp) {

	}

	@Override
	protected void onConfigure(Element e, Properties p) {

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy