blob: 3fe44034922302eb1830529213bcc0d447854c54 [file] [log] [blame]
Pierre De Ropfaca2892016-01-31 23:27:05 +00001package org.apache.felix.dm.lambda.callbacks;
2
3import java.util.Dictionary;
4import java.util.Objects;
5
6import org.apache.felix.dm.Component;
7
8/**
9 * Represents a callback(Component, ServiceReference, Dictionary) 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 CbTypeComponentServiceDict<T, S> extends SerializableLambda {
16 /**
17 * Handles the given arguments.
18 * @param instance the Component implementation instance on which the callback is invoked on.
19 * @param c first callback param
20 * @param service second callback param
21 * @param props third callback param
22 */
23 void accept(T instance, Component c, S service, Dictionary<String, Object> props);
24
25 default CbTypeComponentServiceDict<T, S> andThen(CbTypeComponentServiceDict<T, S> after) {
26 Objects.requireNonNull(after);
27 return (T instance, Component c, S s, Dictionary<String, Object> props) -> {
28 accept(instance, c, s, props);
29 after.accept(instance, c, s, props);
30 };
31 }
32}