我在我的项目中使用 WSO2 消息代理作为消息代理系统。为了获取队列浏览信息,我从AndesAdminServics WSDL生成了客户端,并尝试从我的 api调用 AndesAdminServicePortTypeProxy类的 browseQueue() 方法。生成的 browseQueue() 方法是
public org.wso2.carbon.andes.admin.internal.xsd.Message[] browseQueue(java.lang.String queueName, java.lang.Long nextMessageIdToRead, java.lang.Integer maxMsgCount) throws java.rmi.RemoteException{
if (andesAdminServicePortType == null)
_initAndesAdminServicePortTypeProxy();
return andesAdminServicePortType.browseQueue(queueName, nextMessageIdToRead, maxMsgCount);
}
browseQueue() 方法采用三个参数 - java.lang.String queueName、java.lang.Long nextMessageIdToRead、java.lang.Integer maxMsgCount
我了解参数 queueName,但我没有得到,参数 nextMessageIdToRead 和 maxMsgCount 代表什么。在browseQueue() 方法调用时,我应该传递什么作为参数。