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

com.netflix.astyanax.recipes.queue.MessageHandlerFactory Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax.recipes.queue;

import com.google.common.base.Function;

/**
 * Abstraction for creating message handlers.  Implementations of this class can 
 * be used to tie into dependency injection.
 * @author elandau
 *
 */
public interface MessageHandlerFactory {
    Function createInstance(String className) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy