简体   繁体   中英

IBM.XMS .NET library: set up a flag

I am sending message to Websphere Message Queue, and I need to mark some messages with "Last Message" flag (it is default property for Message Queue). I am using IBM.XMS .NET library, but I haven't found ability to set up this property. Has anyone faced with that problem?

Use SetBooleanProperty method to set "Last Message" flag, something like

message.SetBooleanProperty("LastMessage", true);

When receiving messages, check for the same property on the message to identify if it's the "Last Message" or not.

bool lastMessage = message.getBooleanProperty("LastMessage");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM