Interface StatisticsCollector
public interface StatisticsCollector
Created by The eXo Platform SAS
Author : eXoPlatform
thanhvc@exoplatform.com
Oct 10, 2013
-
Method Summary
Modifier and TypeMethodDescriptionvoidcreateDigestCount(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 loadedvoidCallback indicating execution of poll queuevoidCallback 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 Details
-
createMessageInfoCount
Callback about a message info being created.- Parameters:
pluginId- Notification Plugin is using created message
-
createNotificationInfoCount
Callback about a notification info being created.- Parameters:
pluginId- Notification Plugin is using created notification
-
createDigestCount
Callback about a digest message being created.- Parameters:
pluginId- Notification Plugin is using created digest message
-
deleteEntity
Callback about a entity being deleted- Parameters:
nodeType- nodetype has been deleted
-
insertEntity
Callback about a entity being inserted- Parameters:
nodeType- nodetype has been deleted
-
updateEntity
Callback about a entity being updated- Parameters:
nodeType- nodetype has been updated
-
loadEntity
Callback about a entity being loaded- Parameters:
nodeType- nodetype has been loaded
-
queryExecuted
Callback indicating execution of a query statement- Parameters:
statement- The queryrows- Number of rows returnedtime- execution time
-
pollQueue
Callback indicating execution of poll queue- Parameters:
pluginId-
-
putQueue
Callback indicating execution of put queue- Parameters:
pluginId-
-