Interface ManagedEndpointRegistryMBean
-
- All Superinterfaces:
ManagedServiceMBean
public interface ManagedEndpointRegistryMBean extends ManagedServiceMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Integer
getDynamicSize()
Integer
getMaximumCacheSize()
Integer
getSize()
String
getSource()
Integer
getStaticSize()
TabularData
listEndpoints()
void
purge()
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedServiceMBean
getCamelId, getCamelManagementName, getRouteId, getServiceType, getState, isStaticService, isSupportSuspension, isSuspended, resume, start, stop, suspend
-
-
-
-
Method Detail
-
getSource
@ManagedAttribute(description="Source") String getSource()
-
getDynamicSize
@ManagedAttribute(description="Number of dynamic endpoints cached") Integer getDynamicSize()
-
getStaticSize
@ManagedAttribute(description="Number of static endpoints cached") Integer getStaticSize()
-
getSize
@ManagedAttribute(description="Number of total endpoints cached") Integer getSize()
-
getMaximumCacheSize
@ManagedAttribute(description="Maximum cache size (capacity)") Integer getMaximumCacheSize()
-
purge
@ManagedOperation(description="Purges the cache") void purge()
-
listEndpoints
@ManagedOperation(description="Lists all the endpoints in the registry (url)") TabularData listEndpoints()
-
-