1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.3 */4 package com.tc.stats;5 6 import com.tc.management.TerracottaMBean;7 import com.tc.net.protocol.tcm.ChannelID;8 import com.tc.stats.statistics.CountStatistic;9 import com.tc.stats.statistics.Statistic;10 11 public interface DSOClientMBean extends TerracottaMBean {12 13 ChannelID getChannelID();14 15 String getRemoteAddress();16 17 CountStatistic getTransactionRate();18 19 CountStatistic getObjectFaultRate();20 21 CountStatistic getObjectFlushRate();22 23 Statistic[] getStatistics(String [] names);24 25 }26