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

aQute.lib.io.NonClosingInputStream Maven / Gradle / Ivy

Go to download

Provides a mapping from Event Admin events to Javascript Server Side Events (SSE). This bundle registers under /sse/1, the remaining path is treated as the topic. It will then send all matching events to the browser through SSE. The type of the event is org.osgi.service.eventadmin;topic=%s, the data payload is a JSON representation of the event properties.

The newest version!
package aQute.lib.io;

import java.io.FilterInputStream;
import java.io.InputStream;
import java.util.Objects;

public class NonClosingInputStream extends FilterInputStream {
	public NonClosingInputStream(InputStream in) {
		super(Objects.requireNonNull(in));
	}

	@Override
	public void close() {
		// leave the underlying InputStream open
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy