Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在向 Websphere 消息队列发送消息,我需要用“最后一条消息”标志标记一些消息(它是消息队列的默认属性)。我正在使用 IBM.XMS .NET 库,但我还没有找到设置此属性的能力。有没有人遇到过这个问题?
使用SetBooleanProperty方法设置“最后一条消息”标志,例如
SetBooleanProperty
message.SetBooleanProperty("LastMessage", true);
接收消息时,检查消息上的相同属性以确定它是否是“最后一条消息”。
bool lastMessage = message.getBooleanProperty("LastMessage");