Package com.eventstore.dbclient
Class ProjectionDetails
- java.lang.Object
-
- com.eventstore.dbclient.ProjectionDetails
-
public class ProjectionDetails extends java.lang.ObjectProvides the details for a projection.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetBufferedEvents()The projection's buffered events.java.lang.StringgetCheckpointStatus()The projection's checkpoint status.longgetCoreProcessingTime()The core processing time.java.lang.StringgetEffectiveName()The projection's effective name.longgetEpoch()The projection's current epoch.longgetEventsProcessedAfterRestart()The projection's events processed after restart.java.lang.StringgetLastCheckpoint()The projection's last checkpoint.java.lang.StringgetMode()The projection's mode.java.lang.StringgetName()The projection's name.intgetPartitionsCached()The number of partitions cached.java.lang.StringgetPosition()The projection's position.floatgetProgress()The projection's progress.intgetReadsInProgress()The projection's reads-in-progress.java.lang.StringgetStateReason()The projection's StateReason.java.lang.StringgetStatus()The projection's status.longgetVersion()The projection version.intgetWritePendingEventsAfterCheckpoint()The projection write pending events after checkpoint.intgetWritePendingEventsBeforeCheckpoint()The projection write pending events before checkpoint.intgetWritesInProgress()The projection's writes-in-progress.
-
-
-
Method Detail
-
getCoreProcessingTime
public long getCoreProcessingTime()
The core processing time.
-
getVersion
public long getVersion()
The projection version.
-
getEpoch
public long getEpoch()
The projection's current epoch.
-
getEffectiveName
public java.lang.String getEffectiveName()
The projection's effective name.
-
getWritesInProgress
public int getWritesInProgress()
The projection's writes-in-progress.
-
getReadsInProgress
public int getReadsInProgress()
The projection's reads-in-progress.
-
getPartitionsCached
public int getPartitionsCached()
The number of partitions cached.
-
getStatus
public java.lang.String getStatus()
The projection's status.
-
getStateReason
public java.lang.String getStateReason()
The projection's StateReason.
-
getName
public java.lang.String getName()
The projection's name.
-
getMode
public java.lang.String getMode()
The projection's mode.
-
getPosition
public java.lang.String getPosition()
The projection's position.
-
getProgress
public float getProgress()
The projection's progress.
-
getLastCheckpoint
public java.lang.String getLastCheckpoint()
The projection's last checkpoint.
-
getEventsProcessedAfterRestart
public long getEventsProcessedAfterRestart()
The projection's events processed after restart.
-
getCheckpointStatus
public java.lang.String getCheckpointStatus()
The projection's checkpoint status.
-
getBufferedEvents
public long getBufferedEvents()
The projection's buffered events.
-
getWritePendingEventsBeforeCheckpoint
public int getWritePendingEventsBeforeCheckpoint()
The projection write pending events before checkpoint.
-
getWritePendingEventsAfterCheckpoint
public int getWritePendingEventsAfterCheckpoint()
The projection write pending events after checkpoint.
-
-