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

io.quarkiverse.reactive.messaging.nats.jetstream.client.api.StreamState 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.ZonedDateTime;
import java.util.List;
import java.util.Map;

import lombok.Builder;

@Builder
public record StreamState(Long messages,
        Long bytes,
        Long firstSequence,
        Long lastSequence,
        Long consumers,
        Long subjects,
        Long deleted,
        ZonedDateTime firstTime,
        ZonedDateTime lastTime,
        List subjectStates,
        List deletedStreamSequences,
        LostStreamDataState lostStreamData,
        Map subjectMessages) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy