public class JSpaceStatistics extends Object implements ISpaceFilter
Constructor and Description |
---|
JSpaceStatistics() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this filter, enabling the developer to clean open resources.
|
long |
getPeriod() |
Map<Integer,StatisticsContext> |
getStatistics() |
StatisticsContext |
getStatistics(int operationCode) |
void |
init(IJSpace space,
String filterId,
String url,
int priority)
Initializes this filter.
|
void |
process(SpaceContext context,
ISpaceFilterEntry[] entries,
int operationCode)
This method is called by the engine when an event matching this filter's operation code
occurs in the engine.
|
void |
process(SpaceContext context,
ISpaceFilterEntry subject,
int operationCode)
This method is called by the engine when an event matching this filter's
operation code occurs in the space engine.
|
void |
setPeriod(long period) |
String[] |
toStringArray() |
public void init(IJSpace space, String filterId, String url, int priority)
ISpaceFilter
init
in interface ISpaceFilter
space
- an embedded proxy to the space that contain this filter.filterId
- the name of this filter.url
- The URL that was passed when this filter was created.priority
- defines the order in which filters are activated.public void close()
ISpaceFilter
close
in interface ISpaceFilter
public void process(SpaceContext context, ISpaceFilterEntry subject, int operationCode)
ISpaceFilter
This method is called by the engine when an event matching this filter's operation code occurs in the space engine. Only for SecurityFilter implementation: On SET_SECURITY operation code call SpaceContext.setSecurityContext().
process
in interface ISpaceFilter
context
- the Context passed by the caller, contains security context. some of the
filters (like ON_INIT) will always receive a null context.subject
- the event that occurred.operationCode
- the operation that defines when this filter is activated. The operation
codes are defined in FilterOperationCodes
.public void process(SpaceContext context, ISpaceFilterEntry[] entries, int operationCode)
ISpaceFilter
Notice: This is a special case that is called only on update()
only on AFTER_UPDATE
.
Also on
BEFORE_NOTIFY_TRIGGER
and AFTER_NOTIFY_TRIGGER
.
process
in interface ISpaceFilter
context
- the Context passed by the caller, contains security context. some of the
filters (like ON_INIT) will always receive a null context.entries
- an array of two elements: On AFTER_UPDATE
: the first element represents the old entry while the
second is the new entry.
On BEFORE_NOTIFY_TRIGGER
and AFTER_NOTIFY_TRIGGER
: the first element represents the entry while the
second is the template.
operationCode
- the operation that defines when this filter is activated. The operation
codes are defined in FilterOperationCodes
.public StatisticsContext getStatistics(int operationCode)
public Map<Integer,StatisticsContext> getStatistics()
public String[] toStringArray()
public long getPeriod()
public void setPeriod(long period)
Copyright © GigaSpaces.