
com.netflix.astyanax.recipes.queue.SimpleMessageHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astyanax-queue Show documentation
Show all versions of astyanax-queue Show documentation
astyanax-queue developed by Netflix
package com.netflix.astyanax.recipes.queue;
import com.google.common.base.Function;
public class SimpleMessageHandlerFactory implements MessageHandlerFactory {
@Override
public Function createInstance(String className) throws Exception {
return (Function)Class.forName(className).newInstance();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy