jadex.platform.service.message.streams.IInputConnectionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform Show documentation
Show all versions of jadex-platform Show documentation
The Jadex platform package contains implementations of platform services as well as the platform component itself.
/**
*
*/
package jadex.platform.service.message.streams;
/**
*
*/
public interface IInputConnectionHandler extends IAbstractConnectionHandler
{
/**
* Called by connection when user read some data
* so that other side can continue to send.
*/
public void notifyDataRead();
}