Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 32AA3200C3F for ; Tue, 14 Feb 2017 08:11:13 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 316DE160B52; Tue, 14 Feb 2017 07:11:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 044D7160B7D for ; Tue, 14 Feb 2017 08:11:10 +0100 (CET) Received: (qmail 76153 invoked by uid 500); 14 Feb 2017 07:11:10 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 75467 invoked by uid 99); 14 Feb 2017 07:11:09 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2017 07:11:09 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 684EC3A47F6 for ; Tue, 14 Feb 2017 07:11:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1006735 [14/19] - in /websites/staging/felix/trunk/content: ./ apidocs/dependencymanager.lambda/r9/ apidocs/dependencymanager.lambda/r9/org/ apidocs/dependencymanager.lambda/r9/org/apache/ apidocs/dependencymanager.lambda/r9/org/apache/fel... Date: Tue, 14 Feb 2017 07:11:07 -0000 To: commits@felix.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170214071108.684EC3A47F6@svn01-us-west.apache.org> archived-at: Tue, 14 Feb 2017 07:11:13 -0000 Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponent.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponent.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponent.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,259 @@ + + + + + +CbServiceComponent + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceComponent<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceComponent<T,S>
    +extends SerializableLambda
    +
    Represents a callback(Service, Component) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S service,
        +            Component c)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        service - the first callback argument
        +
        c - the second callback argument
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + + Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponentRef.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponentRef.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceComponentRef.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,262 @@ + + + + + +CbServiceComponentRef + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceComponentRef<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceComponentRef<T,S>
    +extends SerializableLambda
    +
    Represents a callback(Service, Component, ServiceReference) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S service,
        +            Component c,
        +            org.osgi.framework.ServiceReference<S> ref)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        service - the first callback parameter
        +
        c - the second callback parameter
        +
        ref - the third callback parameter
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + + Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceDict.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceDict.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceDict.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,259 @@ + + + + + +CbServiceDict + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceDict<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceDict<T,S>
    +extends SerializableLambda
    +
    Represents a callback(Service, Dictionary) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S service,
        +            java.util.Dictionary<java.lang.String,java.lang.Object> properties)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        service - first callback arg
        +
        properties - second callback arg
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + + Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceMap.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceMap.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceMap.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,259 @@ + + + + + +CbServiceMap + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceMap<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceMap<T,S>
    +extends SerializableLambda
    +
    Represents a callback(Service, Map) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S service,
        +            java.util.Map<java.lang.String,java.lang.Object> properties)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        service - first callback arg
        +
        properties - second callback arg
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + + Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceRef.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceRef.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceRef.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,259 @@ + + + + + +CbServiceRef + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceRef<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceRef<T,S>
    +extends SerializableLambda
    +
    Represents a callback(Service, ServiceReference) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S service,
        +            org.osgi.framework.ServiceReference<S> ref)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        service - first callback arg
        +
        ref - second callback arg
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + + Added: websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceService.html ============================================================================== --- websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceService.html (added) +++ websites/staging/felix/trunk/content/apidocs/dependencymanager.lambda/r9/org/apache/felix/dm/lambda/callbacks/CbServiceService.html Tue Feb 14 07:11:04 2017 @@ -0,0 +1,259 @@ + + + + + +CbServiceService + + + + + + + + + + + + +
+
org.apache.felix.dm.lambda.callbacks
+

Interface CbServiceService<T,S>

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    java.io.Serializable, SerializableLambda
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    +
    @FunctionalInterface
    +public interface CbServiceService<T,S>
    +extends SerializableLambda
    +
    Represents a swap callback(Service, Service) that is invoked on a Component implementation class. + The type of the class on which the callback is invoked on is represented by the T generic parameter.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        accept

        +
        void accept(T instance,
        +            S old,
        +            S replace)
        +
        Handles the given arguments.
        +
        +
        Parameters:
        +
        instance - the Component implementation instance on which the callback is invoked on.
        +
        old - first callback arg
        +
        replace - second callback arg
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + + +