Interface StatisticsCollector
-
public interface StatisticsCollectorCreated by The eXo Platform SAS Author : eXoPlatform thanhvc@exoplatform.com Oct 10, 2013
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateDigestCount(String pluginId)Callback about a digest message being created.voidcreateMessageInfoCount(String pluginId)Callback about a message info being created.voidcreateNotificationInfoCount(String pluginId)Callback about a notification info being created.voiddeleteEntity(String nodeType)Callback about a entity being deletedvoidinsertEntity(String nodeType)Callback about a entity being insertedvoidloadEntity(String nodeType)Callback about a entity being loadedvoidpollQueue(String pluginId)Callback indicating execution of poll queuevoidputQueue(String pluginId)Callback indicating execution of put queuevoidqueryExecuted(String statement, long rows, long time)Callback indicating execution of a query statementvoidupdateEntity(String nodeType)Callback about a entity being updated
-
-
-
Method Detail
-
createMessageInfoCount
void createMessageInfoCount(String pluginId)
Callback about a message info being created.- Parameters:
pluginId- Notification Plugin is using created message
-
createNotificationInfoCount
void createNotificationInfoCount(String pluginId)
Callback about a notification info being created.- Parameters:
pluginId- Notification Plugin is using created notification
-
createDigestCount
void createDigestCount(String pluginId)
Callback about a digest message being created.- Parameters:
pluginId- Notification Plugin is using created digest message
-
deleteEntity
void deleteEntity(String nodeType)
Callback about a entity being deleted- Parameters:
nodeType- nodetype has been deleted
-
insertEntity
void insertEntity(String nodeType)
Callback about a entity being inserted- Parameters:
nodeType- nodetype has been deleted
-
updateEntity
void updateEntity(String nodeType)
Callback about a entity being updated- Parameters:
nodeType- nodetype has been updated
-
loadEntity
void loadEntity(String nodeType)
Callback about a entity being loaded- Parameters:
nodeType- nodetype has been loaded
-
queryExecuted
void queryExecuted(String statement, long rows, long time)
Callback indicating execution of a query statement- Parameters:
statement- The queryrows- Number of rows returnedtime- execution time
-
pollQueue
void pollQueue(String pluginId)
Callback indicating execution of poll queue- Parameters:
pluginId-
-
putQueue
void putQueue(String pluginId)
Callback indicating execution of put queue- Parameters:
pluginId-
-
-