Class AcknowledgeIdsForCheckpoint<AcknowledgeId>
- java.lang.Object
-
- org.apache.flink.streaming.connectors.gcp.pubsub.common.AcknowledgeIdsForCheckpoint<AcknowledgeId>
-
- Type Parameters:
AcknowledgeId- Type of the Ids used for acknowledging.
- All Implemented Interfaces:
Serializable
public class AcknowledgeIdsForCheckpoint<AcknowledgeId> extends Object implements Serializable
This class contains a checkpointId and a List of AcknowledgementIds. This class is used byAcknowledgeOnCheckpointto keep track of acknowledgementIds- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AcknowledgeId>getAcknowledgeIds()longgetCheckpointId()voidsetAcknowledgeIds(List<AcknowledgeId> acknowledgeIds)voidsetCheckpointId(long checkpointId)
-
-
-
Method Detail
-
getCheckpointId
public long getCheckpointId()
-
setCheckpointId
public void setCheckpointId(long checkpointId)
-
getAcknowledgeIds
public List<AcknowledgeId> getAcknowledgeIds()
-
setAcknowledgeIds
public void setAcknowledgeIds(List<AcknowledgeId> acknowledgeIds)
-
-