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

org.bonitasoft.engine.tracking.FlushResult Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
package org.bonitasoft.engine.tracking;

import java.util.List;

/**
 * @author Charles Souillard
 */
public class FlushResult {

    private final long flushTime;

    private final List flushEventListenerResults;


    public FlushResult(long flushTime, List flushEventListenerResults) {
        this.flushTime = flushTime;
        this.flushEventListenerResults = flushEventListenerResults;
    }

    public List getFlushEventListenerResults() {
        return flushEventListenerResults;
    }

    public long getFlushTime() {
        return flushTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy