Uses of Interface
jakarta.jms.JMSContext
-
Packages that use JMSContext Package Description jakarta.jms The Jakarta Messaging API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages. -
-
Uses of JMSContext in jakarta.jms
Subinterfaces of JMSContext in jakarta.jms Modifier and Type Interface Description interface
XAJMSContext
TheXAJMSContext
interface extends the capability ofJMSContext
by adding access to a Jakarta Messaging provider's support for the Java Transaction API (JTA) (optional).Methods in jakarta.jms that return JMSContext Modifier and Type Method Description JMSContext
ConnectionFactory. createContext()
Creates a JMSContext with the default user identity and an unspecified sessionMode.JMSContext
ConnectionFactory. createContext(int sessionMode)
Creates a JMSContext with the default user identity and the specified session mode.JMSContext
ConnectionFactory. createContext(String userName, String password)
Creates a JMSContext with the specified user identity and an unspecified sessionMode.JMSContext
ConnectionFactory. createContext(String userName, String password, int sessionMode)
Creates a JMSContext with the specified user identity and the specified session mode.JMSContext
JMSContext. createContext(int sessionMode)
Creates a newJMSContext
with the specified session mode using the same connection as thisJMSContext
and creating a new session.JMSContext
XAJMSContext. getContext()
Returns theJMSContext
object associated with thisXAJMSContext
.
-