1 50 package org.apache.excalibur.instrument.manager.interfaces; 51 52 60 public interface InstrumentSampleDescriptor 61 { 62 68 boolean isConfigured(); 69 70 75 String getName(); 76 77 82 long getInterval(); 83 84 89 int getSize(); 90 91 96 String getDescription(); 97 98 107 int getType(); 108 109 116 int getValue(); 117 118 123 long getTime(); 124 125 134 int getInstrumentType(); 135 136 142 long getLeaseExpirationTime(); 143 144 152 long extendLease( long lease ); 153 154 159 InstrumentSampleSnapshot getSnapshot(); 160 161 170 int getStateVersion(); 171 } 172 173 | Popular Tags |