Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (C) 2015 Stubhub.
*/
package io.bigdime.core;
import java.util.Collection;
import java.util.Map;
/**
* AdaptorContext defines methods that can be used to get information about the
* running instance of data adaptor. There is one context per adaptor per JVM.
*
* @author Neeraj Jain
*
*/
public interface AdaptorContext {
/**
* Gets the name of the running adaptor.
*
* @return name of the adaptor
*/
public void setAdaptorName(String name);
public String getAdaptorName();
public Collection getSources();
public Collection getSinks();
public Collection getChannels();
public void setSources(Collection sources);
public void setSinks(Collection sinks);
public void setChannels(Collection channels);
public Map getChannelMap();
// public AdaptorValidationType getAdaptorValidationType();
}