Uses of Interface
org.apache.openjpa.lib.instrumentation.Instrument
-
Packages that use Instrument Package Description org.apache.openjpa.instrumentation org.apache.openjpa.instrumentation.jmx org.apache.openjpa.lib.instrumentation -
-
Uses of Instrument in org.apache.openjpa.instrumentation
Classes in org.apache.openjpa.instrumentation that implement Instrument Modifier and Type Class Description class
AbstractDataCacheInstrument
Provides a basic instrument implementation wrapper for the data cache.class
AbstractPreparedQueryCacheInstrument
Provides a basic instrument implementation wrapper for the prepared query cache.class
AbstractQueryCacheInstrument
Provides a basic instrument implementation wrapper for the query cache. -
Uses of Instrument in org.apache.openjpa.instrumentation.jmx
Subinterfaces of Instrument in org.apache.openjpa.instrumentation.jmx Modifier and Type Interface Description interface
JMXInstrument
Interface for JMX-specific instrumentsClasses in org.apache.openjpa.instrumentation.jmx that implement Instrument Modifier and Type Class Description class
DataCacheJMXInstrument
A JMX-specific instrument for the data cacheclass
PreparedQueryCacheJMXInstrument
A JMX-specific instrument for the query cacheclass
QueryCacheJMXInstrument
A JMX-specific instrument for the query cacheMethods in org.apache.openjpa.instrumentation.jmx with parameters of type Instrument Modifier and Type Method Description void
JMXProvider. startInstrument(Instrument instrument)
Start an instrument.void
JMXProvider. stopInstrument(Instrument instrument, boolean force)
Stop an instrument. -
Uses of Instrument in org.apache.openjpa.lib.instrumentation
Classes in org.apache.openjpa.lib.instrumentation that implement Instrument Modifier and Type Class Description class
AbstractInstrument
Provides a base for creating instruments.Methods in org.apache.openjpa.lib.instrumentation that return Instrument Modifier and Type Method Description Instrument
AbstractInstrumentationProvider. getInstrumentByName(java.lang.String name)
Instrument
InstrumentationProvider. getInstrumentByName(java.lang.String name)
Returns an instrument instrumented by this provider by nameMethods in org.apache.openjpa.lib.instrumentation that return types with arguments of type Instrument Modifier and Type Method Description java.util.Set<Instrument>
AbstractInstrumentationProvider. getInstruments()
java.util.Set<Instrument>
InstrumentationProvider. getInstruments()
Gets all instruments instrumented by this providerMethods in org.apache.openjpa.lib.instrumentation with parameters of type Instrument Modifier and Type Method Description void
AbstractInstrumentationProvider. addInstrument(Instrument instrument)
void
InstrumentationProvider. addInstrument(Instrument instrument)
Adds an instrument to this providers list of managed instruments.void
AbstractInstrumentationProvider. initializeInstrument(Instrument instrument, java.lang.Object context)
void
AbstractInstrumentationProvider. initializeInstrument(Instrument instrument, java.lang.String options, java.lang.Object context)
void
InstrumentationProvider. initializeInstrument(Instrument instrument, java.lang.Object context)
Initializes an instrument within the provided context.void
InstrumentationProvider. initializeInstrument(Instrument instrument, java.lang.String options, java.lang.Object context)
Initializes an instrument within the provided options and context.void
InstrumentationProvider. startInstrument(Instrument instrument)
Starts an instrumentvoid
AbstractInstrumentationProvider. stopInstrument(Instrument instrument)
void
InstrumentationProvider. stopInstrument(Instrument instrument)
Stops an instrumentvoid
InstrumentationProvider. stopInstrument(Instrument instrument, boolean force)
Stops an instrument, forcing the stop, if necessary.
-