blob: 7bee3c304be0d3ebeda9cbed975375e9187c5abb [file] [log] [blame]
Pierre De Ropfaca2892016-01-31 23:27:05 +00001package org.apache.felix.dm.lambda.callbacks;
2
3import java.util.Objects;
4
5import org.apache.felix.dm.Component;
6import org.osgi.framework.Bundle;
7
8/**
9 * Represents a callback(Component, Bundle) that is invoked on a Component implementation class.
10 * The type of the class on which the callback is invoked on is represented by the T generic parameter.
11 *
12 * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
13 */
14@FunctionalInterface
15public interface CbTypeComponentBundle<T> extends SerializableLambda {
16 /**
17 * Handles the given arguments.
18 * @param instance the Component implementation instance on which the callback is invoked on.
19 * @param component the first callback parameter
20 * @param bundle the second callback parameter
21 */
22 void accept(T instance, Component component, Bundle bundle);
23
24 default CbTypeComponentBundle<T> andThen(CbTypeComponentBundle<? super T> after) {
25 Objects.requireNonNull(after);
26 return (T instance, Component component, Bundle bundle) -> {
27 accept(instance, component, bundle);
28 after.accept(instance, component, bundle);
29 };
30 }
31}