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

io.bigdime.core.Sink Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
/**
 * Copyright (C) 2015 Stubhub.
 */
package io.bigdime.core;

import org.apache.flume.NamedComponent;
import org.apache.flume.lifecycle.LifecycleAware;

/**
 * Sink is meant to read data from channel and write to disk. It executes a
 * chain of handlers to perform the tasks. It does NOT extend the
 * {@link org.apache.flume.Sink} interface since it doesn't deal directly with
 * the DataChannel, instead it lets one of the handlers deal with the channels.
 *
 * @author Neeraj Jain
 *
 */
public interface Sink extends NamedComponent, HasHandlers, LifecycleAware {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy