Interface LuceneServiceMXBean
-
public interface LuceneServiceMXBean
MBean that provides access to theLuceneService
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LuceneIndexMetrics[]
listIndexMetrics()
Returns an array ofLuceneIndexMetrics
for theLuceneIndex
instances defined in this memberLuceneIndexMetrics[]
listIndexMetrics(java.lang.String regionPath)
Returns an array ofLuceneIndexMetrics
for theLuceneIndex
instances defined on the input region in this memberLuceneIndexMetrics
listIndexMetrics(java.lang.String regionPath, java.lang.String indexName)
Returns aLuceneIndexMetrics
for theLuceneIndex
with the input index name defined on the input region in this member.
-
-
-
Method Detail
-
listIndexMetrics
LuceneIndexMetrics[] listIndexMetrics()
Returns an array ofLuceneIndexMetrics
for theLuceneIndex
instances defined in this member- Returns:
- an array of LuceneIndexMetrics for the LuceneIndexes defined in this member
-
listIndexMetrics
LuceneIndexMetrics[] listIndexMetrics(java.lang.String regionPath)
Returns an array ofLuceneIndexMetrics
for theLuceneIndex
instances defined on the input region in this member- Parameters:
regionPath
- The full path of the region to retrieve- Returns:
- an array of LuceneIndexMetrics for the LuceneIndex instances defined on the input region in this member
-
listIndexMetrics
LuceneIndexMetrics listIndexMetrics(java.lang.String regionPath, java.lang.String indexName)
Returns aLuceneIndexMetrics
for theLuceneIndex
with the input index name defined on the input region in this member.- Parameters:
regionPath
- The full path of the region to retrieveindexName
- The name of the index to retrieve- Returns:
- a LuceneIndexMetrics for the LuceneIndex with the input index name defined on the input region in this member.
-
-