Skip to content

Instantly share code, notes, and snippets.

@martin-cowie
Created April 21, 2017 14:06
Show Gist options
  • Save martin-cowie/349d16a5d36c6abf8eee517f7f46c47c to your computer and use it in GitHub Desktop.
Save martin-cowie/349d16a5d36c6abf8eee517f7f46c47c to your computer and use it in GitHub Desktop.
package com.acme;
public interface ClientStatsMBean
{
public String getClientsByConnectionType();
public String getTopByAge();
public String getTopBySubscriptions();
public String getTopByMessagesSent();
public String getTopByMessagesReceived();
public int getTopClientCount();
public void setTopClientCount(int topClientCount);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment