Package com.couchbase.transactions.log
Class TransactionCleanupStartRunEvent
- java.lang.Object
-
- com.couchbase.client.core.cnc.AbstractEvent
-
- com.couchbase.transactions.log.TransactionEvent
-
- com.couchbase.transactions.log.TransactionCleanupStartRunEvent
-
- All Implemented Interfaces:
com.couchbase.client.core.cnc.Event
@Volatile public class TransactionCleanupStartRunEvent extends TransactionEvent
Emitted periodically with a summary of what will be done soon for cleanup.As this exposes implementation details of transactions, all methods are subject to change and marked with @Stability.Volatile.
-
-
Constructor Summary
Constructors Constructor Description TransactionCleanupStartRunEvent​(java.lang.String bucketName, java.lang.String scopeName, java.lang.String collectionName, java.lang.String clientUuid, ClientRecordDetails clientDetails, java.time.Duration cleanupWindow, int atrsToCheckInNextWindow, int totalAtrs, java.time.Duration checkAtrEvery)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
atrsToCheckInNextWindow()
How many ATRs this client will check over the next cleanupWindow.java.lang.String
bucketName()
The bucket containing the ATRs being checked by this cleanup.java.time.Duration
checkAtrEvery()
How regular an ATR should be checked by this client over the next cleanupWindow.java.time.Duration
cleanupWindow()
All ATRs are checked once every cleanupWindow.int
clientIndex()
The numeric index of the client in a sorted list of active clients.java.lang.String
clientUuid()
The unique ID of the this client (application).java.lang.String
collectionName()
The collection containing the ATRs being checked by this cleanup.java.lang.String
description()
boolean
success()
Provided so the app check if this event is regarded as a success, and if not, output any logs it has.int
totalActiveClients()
The total active, alive clients taking part in cleanup, including this one.int
totalAtrs()
The total number of ATRs being checked by all clients.-
Methods inherited from class com.couchbase.transactions.log.TransactionEvent
logs
-
Methods inherited from class com.couchbase.client.core.cnc.AbstractEvent
category, context, created, createdAt, duration, severity, toString
-
-
-
-
Constructor Detail
-
TransactionCleanupStartRunEvent
@Volatile public TransactionCleanupStartRunEvent​(java.lang.String bucketName, java.lang.String scopeName, java.lang.String collectionName, java.lang.String clientUuid, ClientRecordDetails clientDetails, java.time.Duration cleanupWindow, int atrsToCheckInNextWindow, int totalAtrs, java.time.Duration checkAtrEvery)
-
-
Method Detail
-
clientIndex
@Volatile public int clientIndex()
The numeric index of the client in a sorted list of active clients.
-
totalActiveClients
@Volatile public int totalActiveClients()
The total active, alive clients taking part in cleanup, including this one.
-
cleanupWindow
@Volatile public java.time.Duration cleanupWindow()
All ATRs are checked once every cleanupWindow.
-
atrsToCheckInNextWindow
@Volatile public int atrsToCheckInNextWindow()
How many ATRs this client will check over the next cleanupWindow.
-
totalAtrs
@Volatile public int totalAtrs()
The total number of ATRs being checked by all clients.
-
checkAtrEvery
@Volatile public java.time.Duration checkAtrEvery()
How regular an ATR should be checked by this client over the next cleanupWindow.
-
bucketName
@Volatile public java.lang.String bucketName()
The bucket containing the ATRs being checked by this cleanup.
-
collectionName
@Volatile public java.lang.String collectionName()
The collection containing the ATRs being checked by this cleanup.
-
clientUuid
@Volatile public java.lang.String clientUuid()
The unique ID of the this client (application).
-
description
public java.lang.String description()
-
success
public boolean success()
Description copied from class:TransactionEvent
Provided so the app check if this event is regarded as a success, and if not, output any logs it has.- Specified by:
success
in classTransactionEvent
-
-