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

org.fusesource.fabric.stream.log.Processor Maven / Gradle / Ivy

Go to download

An executable jar that streams log data received via stdin to ActiveMQ. (powered by Camel)

There is a newer version: 7.2.0.redhat-083
Show newest version
/**
 * 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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy