com.github.dockerjava.api.command.EventsCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
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