com.espertech.esperio.csv.AdapterCoordinator Maven / Gradle / Ivy
The newest version!
/*
***************************************************************************************
* Copyright (C) 2006 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
***************************************************************************************
*/
package com.espertech.esperio.csv;
import com.espertech.esper.runtime.client.util.InputAdapter;
/**
* A AdapterCoordinator coordinates several Adapters so that the events they
* send into the runtime runtime arrive in some well-defined order, in
* effect making the several Adapters into one large sending Adapter.
*/
public interface AdapterCoordinator extends InputAdapter {
/**
* Coordinate an InputAdapter.
*
* @param adapter - the InputAdapter to coordinate
*/
public void coordinate(InputAdapter adapter);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy