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

io.fabric8.docker.client.DockerStreamData Maven / Gradle / Ivy

The newest version!
package io.fabric8.docker.client;

public interface DockerStreamData {

    StreamType streamType();

    int size();

    byte[] payload();

    enum StreamType {
        STDIN(0),
        STDOUT(1),
        STDERR(2),
        RAW(3);

        private final int value;

        StreamType(int streamType) {
            this.value = streamType;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy