* @return A new instance of {@link ConsumerConfig}.
*/
private ConsumerConfig getConsumerConfig(BasicFlowletContext flowletContext, Method method) {
// Determine input queue partition type
HashPartition hashPartition = method.getAnnotation(HashPartition.class);
RoundRobin roundRobin = method.getAnnotation(RoundRobin.class);
DequeueStrategy strategy = DequeueStrategy.FIFO;
String hashKey = null;
Preconditions.checkArgument(!(hashPartition != null && roundRobin != null),
"Only one strategy allowed for process() method: %s", method.getName());