Package org.jboss.as.ejb3.inflow
Interface MessageEndpointService<T>
-
public interface MessageEndpointService<T>- Author:
- Carlo de Wolf
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActivationName()ClassLoadergetClassLoader()Returns the classloader that's applicable for the endpoint application.Class<T>getMessageListenerInterface()jakarta.transaction.TransactionManagergetTransactionManager()booleanisDeliveryTransacted(Method method)Tobtain(long timeout, TimeUnit milliseconds)voidrelease(T obj)
-
-
-
Method Detail
-
getTransactionManager
jakarta.transaction.TransactionManager getTransactionManager()
-
isDeliveryTransacted
boolean isDeliveryTransacted(Method method) throws NoSuchMethodException
- Throws:
NoSuchMethodException
-
release
void release(T obj)
-
getClassLoader
ClassLoader getClassLoader()
Returns the classloader that's applicable for the endpoint application. This classloader will be used to set the thread context classloader during the beforeDelivery()/afterDelivery() callbacks as mandated by the JCA 1.6 spec- Returns:
-
getActivationName
String getActivationName()
-
-