domino.java.capsule.CapsuleScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-java Show documentation
Show all versions of domino-java Show documentation
A lightweight Java library for writing elegant OSGi bundle activators
package domino.java.capsule;
/**
* Represents a collection of capsules which shall all be stopped on the same
* event.
*/
public interface CapsuleScope {
/**
* Stops all capsules in this scope.
*/
void stop();
}