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

com.bazaarvoice.ostrich.pool.PartitionContextSupplier Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.bazaarvoice.ostrich.pool;

import com.bazaarvoice.ostrich.PartitionContext;

import java.lang.reflect.Method;

interface PartitionContextSupplier {
    /**
     * Builds a {@link PartitionContext} from the method arguments passed to the specified interface method.
     * 

* If the {@code method} argument's declaring class is not the public service interface this will return an empty * partition context. */ PartitionContext forCall(Method method, Object... args); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy