All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.reactive.messaging.nats.jetstream.client.api.Consumer Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkiverse.reactive.messaging.nats.jetstream.client.api;

import java.time.Duration;
import java.time.ZonedDateTime;

import lombok.Builder;

@Builder
public record Consumer(String stream,
        String name,
        ConsumerConfiguration configuration,
        ZonedDateTime created,
        Sequence delivered,
        Sequence ackFloor,
        Long pending,
        Long waiting,
        Long acknowledgePending,
        Long redelivered,
        Boolean paused,
        Duration pauseRemaining,
        Cluster cluster,
        Boolean pushBound,
        ZonedDateTime timestamp) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy