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

com.github.dockerjava.api.command.EventsCmd Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.api.command;

import java.util.concurrent.ExecutorService;


/**
 * Get events
 *
 * @param since - Show all events created since timestamp
 * @param until - Stream events until this timestamp
 */
public interface EventsCmd extends DockerCmd {
    public EventsCmd withSince(String since);

    public EventsCmd withUntil(String until);

    public String getSince();

    public String getUntil();

    public EventCallback getEventCallback();
    
    public EventsCmd withEventCallback(EventCallback eventCallback);

    public static interface Exec extends DockerCmdExec {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy