Kieker 1.9

Uses of Interface
kieker.common.util.registry.IRegistry

Packages that use IRegistry
kieker.common.record   
kieker.common.record.controlflow   
kieker.common.record.flow   
kieker.common.record.flow.trace   
kieker.common.record.flow.trace.concurrency   
kieker.common.record.flow.trace.concurrency.monitor   
kieker.common.record.flow.trace.operation   
kieker.common.record.flow.trace.operation.constructor   
kieker.common.record.flow.trace.operation.object   
kieker.common.record.misc   
kieker.common.record.system   
kieker.common.util.registry   
kieker.monitoring.core.controller   
kieker.tools.opad.record   
 

Uses of IRegistry in kieker.common.record
 

Methods in kieker.common.record with parameters of type IRegistry
static IMonitoringRecord AbstractMonitoringRecord.createFromByteBuffer(int clazzid, ByteBuffer buffer, IRegistry<String> stringRegistry)
           
 void IMonitoringRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should initialize the record based on the given values.
 void IMonitoringRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Uses of IRegistry in kieker.common.record.controlflow
 

Methods in kieker.common.record.controlflow with parameters of type IRegistry
 void OperationExecutionRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void BranchingRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void OperationExecutionRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void BranchingRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.controlflow with parameters of type IRegistry
BranchingRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
OperationExecutionRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow
 

Methods in kieker.common.record.flow with parameters of type IRegistry
 void AbstractEvent.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 

Constructors in kieker.common.record.flow with parameters of type IRegistry
AbstractEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace
 

Methods in kieker.common.record.flow.trace with parameters of type IRegistry
 void TraceMetadata.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void ConstructionEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void TraceMetadata.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.flow.trace with parameters of type IRegistry
AbstractTraceEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
ConstructionEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
TraceMetadata(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace.concurrency
 

Methods in kieker.common.record.flow.trace.concurrency with parameters of type IRegistry
 void JoinEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void SplitEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.flow.trace.concurrency with parameters of type IRegistry
JoinEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
SplitEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace.concurrency.monitor
 

Methods in kieker.common.record.flow.trace.concurrency.monitor with parameters of type IRegistry
 void AbstractMonitorEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.flow.trace.concurrency.monitor with parameters of type IRegistry
AbstractMonitorEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorEntryEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorExitEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorNotifyAllEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorNotifyEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorRequestEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MonitorWaitEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace.operation
 

Methods in kieker.common.record.flow.trace.operation with parameters of type IRegistry
 void CallOperationEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 void AfterOperationFailedEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 void AbstractOperationEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.flow.trace.operation with parameters of type IRegistry
AbstractOperationEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
AfterOperationEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
AfterOperationFailedEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
BeforeOperationEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
CallOperationEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace.operation.constructor
 

Constructors in kieker.common.record.flow.trace.operation.constructor with parameters of type IRegistry
AfterConstructorEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
AfterConstructorFailedEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
BeforeConstructorEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
CallConstructorEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.flow.trace.operation.object
 

Methods in kieker.common.record.flow.trace.operation.object with parameters of type IRegistry
 void AfterOperationObjectEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 void AfterOperationFailedObjectEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 void BeforeOperationObjectEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 void CallOperationObjectEvent.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record. It should be possible to convert this array later into a record again.
 

Constructors in kieker.common.record.flow.trace.operation.object with parameters of type IRegistry
AfterOperationFailedObjectEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
AfterOperationObjectEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
BeforeOperationObjectEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
CallOperationObjectEvent(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.misc
 

Methods in kieker.common.record.misc with parameters of type IRegistry
 void KiekerMetadataRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void EmptyRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void RegistryRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void TimestampRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void KiekerMetadataRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void EmptyRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void RegistryRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void TimestampRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.misc with parameters of type IRegistry
EmptyRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
KiekerMetadataRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
RegistryRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
TimestampRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.record.system
 

Methods in kieker.common.record.system with parameters of type IRegistry
 void MemSwapUsageRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void CPUUtilizationRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void ResourceUtilizationRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void MemSwapUsageRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void CPUUtilizationRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 void ResourceUtilizationRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This method should deliver an byte array containing the content of the record.
 

Constructors in kieker.common.record.system with parameters of type IRegistry
CPUUtilizationRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
MemSwapUsageRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
ResourceUtilizationRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
          This constructor converts the given array into a record.
 

Uses of IRegistry in kieker.common.util.registry
 

Subinterfaces of IRegistry in kieker.common.util.registry
 interface ILookup<E>
          A generic interface to query registered unique IDs of objects.
 

Classes in kieker.common.util.registry that implement IRegistry
 class Lookup<E>
           
 class Registry<E>
          A simple registry to assign unique ids to objects.
 

Uses of IRegistry in kieker.monitoring.core.controller
 

Methods in kieker.monitoring.core.controller that return IRegistry
 IRegistry<String> RegistryController.getStringRegistry()
          Gets the used IRegistry
 IRegistry<String> MonitoringController.getStringRegistry()
           
 IRegistry<String> IRegistryController.getStringRegistry()
          Gets the used IRegistry
 

Uses of IRegistry in kieker.tools.opad.record
 

Methods in kieker.tools.opad.record with parameters of type IRegistry
 void NamedDoubleRecord.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void NamedTSPoint.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void StorableDetectionResult.initFromBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
          Deprecated. This record uses the IMonitoringRecord.BinaryFactory mechanism. Hence, this method is not implemented.
 void NamedDoubleRecord.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
 void NamedTSPoint.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
 void StorableDetectionResult.writeBytes(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
 

Constructors in kieker.tools.opad.record with parameters of type IRegistry
NamedDoubleRecord(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
NamedTSPoint(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
StorableDetectionResult(ByteBuffer buffer, IRegistry<String> stringRegistry)
           
 


Kieker 1.9

Copyright 2014 Kieker Project, http://kieker-monitoring.net