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

com.microsoft.azure.eventprocessorhost.IEventProcessorFactory Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.microsoft.azure.eventprocessorhost;


/**
 * Interface that must be implemented by an event processor factory class.
 * 

* User-provided factories are needed if creating an event processor object requires more work than * just a new with a parameterless constructor. * * @param The type of event processor objects produced by this factory, which must implement IEventProcessor */ public interface IEventProcessorFactory { /** * Called to create an event processor for the given partition. *

* If it throws an exception, that causes this event processor host instance to give up ownership of the partition. * * @param context Information about the partition that the event processor will handle events from. * @throws Exception to indicate failure. * @return The event processor object. */ T createEventProcessor(PartitionContext context) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy