public interface

Connection

 androidx.test.services.speakeasy.client.Connection

Subclasses:

ToolConnection, AppConnection

Gradle dependencies

compile group: 'androidx.test', name: 'orchestrator', version: '1.5.0'

  • groupId: androidx.test
  • artifactId: orchestrator
  • version: 1.5.0

Artifact androidx.test:orchestrator:1.5.0 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test:orchestrator com.android.support.test:orchestrator

Overview

Represents a connection to SpeakEasy - the trivial binder registry.

Summary

Methods
public voidfind(java.lang.String key, FindResultReceiver rr)

Search for a binder in SpeakEasy.

public voidpublish(IBinder binder, PublishResultReceiver rr)

Add a binder to the SpeakEasy binder registry.

Methods

public void publish(IBinder binder, PublishResultReceiver rr)

Add a binder to the SpeakEasy binder registry.

Parameters:

binder: The IBinder to publish.
rr: the PublishResultReceiver to consume responses with.

public void find(java.lang.String key, FindResultReceiver rr)

Search for a binder in SpeakEasy.

Parameters:

key: the Key to search under.
rr: the FindResultReceiver to consume responses with.

Source

/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.test.services.speakeasy.client;

import android.os.IBinder;

/** Represents a connection to SpeakEasy - the trivial binder registry. */
public interface Connection {

  /**
   * Add a binder to the SpeakEasy binder registry.
   *
   * @param binder The IBinder to publish.
   * @param rr the PublishResultReceiver to consume responses with.
   */
  public void publish(IBinder binder, PublishResultReceiver rr);

  /**
   * Search for a binder in SpeakEasy.
   *
   * @param key the Key to search under.
   * @param rr the FindResultReceiver to consume responses with.
   */
  public void find(String key, FindResultReceiver rr);
}