public EventAdminSource()

in rcomp-eventadmin/src/main/java/org/apache/karaf/rcomp/eventadmin/EventAdminSource.java [42:49]


    public EventAdminSource(BundleContext context, String topic, Class<T> type) {
        this.context = context;
        this.topic = topic;
        if (!(type == Map.class || type == Event.class)) {
            throw new IllegalArgumentException("Curently only Map<String, ?> and Event are supported");
        }
        this.type = type;
    }