public interface

TileClient

 androidx.wear.tiles.client.TileClient

Gradle dependencies

compile group: 'androidx.wear.tiles', name: 'tiles-renderer', version: '1.1.0-alpha07'

  • groupId: androidx.wear.tiles
  • artifactId: tiles-renderer
  • version: 1.1.0-alpha07

Artifact androidx.wear.tiles:tiles-renderer:1.1.0-alpha07 it located at Google repository (https://maven.google.com/)

Overview

Client to connect and interact with a TileService.

Summary

Methods
public <any>requestApiVersion()

Gets the API version supported by the connected TileService.

public <any>requestResources(RequestBuilders.ResourcesRequest requestParams)

Request a resource bundle from the connected TileService.

public <any>requestTile(RequestBuilders.TileRequest requestParams)

Request a tile payload from the connected TileService.

public <any>sendOnTileAddedEvent()

Send a Tile Added notification to the connected TileService.

public <any>sendOnTileEnterEvent()

Send a Tile Enter notification to the connected TileService.

public <any>sendOnTileLeaveEvent()

Send a Tile Leave notification to the connected TileService.

public <any>sendOnTileRemovedEvent()

Send a Tile Removed notification to the connected TileService.

Methods

public <any> requestApiVersion()

Gets the API version supported by the connected TileService.

public <any> requestTile(RequestBuilders.TileRequest requestParams)

Request a tile payload from the connected TileService.

public <any> requestResources(RequestBuilders.ResourcesRequest requestParams)

Request a resource bundle from the connected TileService.

public <any> sendOnTileAddedEvent()

Send a Tile Added notification to the connected TileService.

public <any> sendOnTileRemovedEvent()

Send a Tile Removed notification to the connected TileService.

public <any> sendOnTileEnterEvent()

Send a Tile Enter notification to the connected TileService.

public <any> sendOnTileLeaveEvent()

Send a Tile Leave notification to the connected TileService.

Source

/*
 * Copyright 2021 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.wear.tiles.client;

import androidx.annotation.NonNull;
import androidx.wear.tiles.RequestBuilders;
import androidx.wear.tiles.ResourceBuilders;
import androidx.wear.tiles.TileBuilders;

import com.google.common.util.concurrent.ListenableFuture;

/**
 * Client to connect and interact with a TileService.
 */
public interface TileClient {
    /** Gets the API version supported by the connected TileService. */
    @NonNull
    ListenableFuture<Integer> requestApiVersion();

    /** Request a tile payload from the connected TileService. */
    @NonNull
    ListenableFuture<TileBuilders.Tile> requestTile(
            @NonNull RequestBuilders.TileRequest requestParams);

    /** Request a resource bundle from the connected TileService. */
    @NonNull
    ListenableFuture<ResourceBuilders.Resources> requestResources(
            @NonNull RequestBuilders.ResourcesRequest requestParams);

    /** Send a Tile Added notification to the connected TileService. */
    @NonNull
    ListenableFuture<Void> sendOnTileAddedEvent();

    /** Send a Tile Removed notification to the connected TileService. */
    @NonNull
    ListenableFuture<Void> sendOnTileRemovedEvent();

    /** Send a Tile Enter notification to the connected TileService. */
    @NonNull
    ListenableFuture<Void> sendOnTileEnterEvent();

    /** Send a Tile Leave notification to the connected TileService. */
    @NonNull
    ListenableFuture<Void> sendOnTileLeaveEvent();
}