org.fusesource.fabric.stream.log.Processor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-log Show documentation
Show all versions of stream-log Show documentation
An executable jar that streams log data received via stdin to ActiveMQ. (powered by Camel)
/**
* Copyright (C) 2010, FuseSource Corp. All rights reserved.
*/
package org.fusesource.fabric.stream.log;
import java.util.HashMap;
/**
*
*
*
* @author Hiram Chirino
*/
abstract public class Processor {
public void start() throws Exception {}
public void stop() {}
public abstract void send(HashMap headers, byte[] data, Callback onComplete);
}