org.distributeme.agents.transporter.TransporterService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of distributeme-agents Show documentation
Show all versions of distributeme-agents Show documentation
Support for mobile agents in DistributeMe.
package org.distributeme.agents.transporter;
import net.anotheria.anoprise.metafactory.Service;
import org.distributeme.agents.AgentPackage;
import org.distributeme.annotation.DistributeMe;
import org.distributeme.annotation.SupportService;
@DistributeMe(moskitoSupport=false, factoryClazz=TransporterServiceFactory.class)
@SupportService
public interface TransporterService extends Service{
void receiveAndAwakeAgent(AgentPackage agent) throws TransporterServiceException;
}