org.activecomponents.webservice.messages.ServiceTerminateInvocationMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-webservice-websocket Show documentation
Show all versions of jadex-platform-webservice-websocket Show documentation
Jadex websocket webservice implementation
package org.activecomponents.webservice.messages;
/**
* A terminate service call message.
*/
public class ServiceTerminateInvocationMessage extends BaseMessage
{
//todo: support terminate with exception
/**
* Create a new command.
*/
public ServiceTerminateInvocationMessage()
{
}
/**
* Create a new command.
*/
public ServiceTerminateInvocationMessage(String callid)
{
super(callid);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy