Interface JmsMsg

All Known Implementing Classes:
TextJmsMsg

public interface JmsMsg
Custom version of JMS Message which does not throw.
Since:
1.0
Author:
Lei Yang
  • Method Summary

    Modifier and Type Method Description
    java.lang.String correlationId()  
    javax.jms.Destination destination()  
    long expiration()  
    java.lang.String groupId()  
    java.lang.Integer groupSeq()  
    java.lang.String id()  
    java.lang.String invoking()  
    javax.jms.TextMessage msg()  
    <T> T property​(java.lang.String name, java.lang.Class<T> type)  
    javax.jms.Destination replyTo()  
    java.lang.String text()  
    java.time.Instant timestamp()  
    java.lang.String type()  
  • Method Details

    • id

      java.lang.String id()
    • destination

      javax.jms.Destination destination()
    • type

      java.lang.String type()
    • correlationId

      java.lang.String correlationId()
    • text

      java.lang.String text()
    • replyTo

      javax.jms.Destination replyTo()
    • groupId

      java.lang.String groupId()
    • groupSeq

      java.lang.Integer groupSeq()
    • expiration

      long expiration()
    • timestamp

      java.time.Instant timestamp()
    • invoking

      java.lang.String invoking()
    • property

      <T> T property​(java.lang.String name, java.lang.Class<T> type)
    • msg

      javax.jms.TextMessage msg()