[JBoss JIRA] Assigned: (JBAS-3228) Enable browsing of scheduled messages
by Adrian Brock (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-3228?page=all ]
Adrian Brock reassigned JBAS-3228:
----------------------------------
Assignee: Adrian Brock
> Enable browsing of scheduled messages
> -------------------------------------
>
> Key: JBAS-3228
> URL: http://jira.jboss.com/jira/browse/JBAS-3228
> Project: JBoss Application Server
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: JMS service
> Affects Versions: JBossAS-4.0.4.GA
> Reporter: Galder Zamarreno
> Assigned To: Adrian Brock
> Fix For: JBossAS-5.0.0.Beta, JBossAS-4.0.5.GA
>
>
> We have a requirement to check the messages that are currently scheduled to deliver but not yet in the queue.
> "ScheduledMessageCount" denotes the total number of scheduled messages. As far as I know, queue brower
> only works with messages in the queue, so how to browse those scheduled messages? This is typically
> more important than queued messages since they may be failed and reschduled ones.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 10 months
[JBoss JIRA] Created: (JBAS-3386) Expose "in process" messages via JMX
by Adrian Brock (JIRA)
Expose "in process" messages via JMX
------------------------------------
Key: JBAS-3386
URL: http://jira.jboss.com/jira/browse/JBAS-3386
Project: JBoss Application Server
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Components: JMS service
Reporter: Adrian Brock
Expose the number of "in process" (i.e. unacknowledged messages given to the client)
via the JMX interfaces.
e.g. change
org.jboss.mq.server.jmx.Queue to have
public int getInProcessCount()
{
return jmsQueue.getInProcessCount();
}
org.jboss.mq.server.JMSQueue to have
public int getInProcessCount()
{
return basicQueue.getInProcessCount();
}
org.jboss.mq.server.BasicQueue to have
public int getInProcessCount()
{
return unacknowledgeMessages.size();
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 10 months