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

com.eventstore.dbclient.ReadResult Maven / Gradle / Ivy

package com.eventstore.dbclient;

import java.util.List;

public class ReadResult {
    private final List events;

    public ReadResult(List events) {
        this.events = events;
    }

    public List getEvents() {
        return this.events;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy