blob: bd29f1665b55e43e6d12ba86ff266440b22831c1 [file] [log] [blame]
/*
* Copyright (C) 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 com.android.networkstack.apishim.common;
import android.net.ConnectivityManager.NetworkCallback;
import android.net.NetworkRequest;
import android.os.Handler;
import androidx.annotation.NonNull;
/**
* Interface used to access API methods in {@link android.net.ConnectivityManager}, with
* appropriate fallbacks if the methods are not yet part of the released API.
*
* <p>This interface makes it easier for callers to use ConnectivityManagerShimImpl, as it's more
* obvious what methods must be implemented on each API level, and it abstracts from callers the
* need to reference classes that have different implementations (which also does not work well
* with IDEs).
*/
public interface ConnectivityManagerShim {
/** See android.net.ConnectivityManager#requestBackgroundNetwork */
void requestBackgroundNetwork(@NonNull NetworkRequest request,
@NonNull Handler handler, @NonNull NetworkCallback networkCallback)
throws UnsupportedApiLevelException;
/** See android.net.ConnectivityManager#registerSystemDefaultNetworkCallback */
void registerSystemDefaultNetworkCallback(
@NonNull NetworkCallback networkCallback, @NonNull Handler handler)
throws UnsupportedApiLevelException;
/** See android.net.ConnectivityManager#registerDefaultNetworkCallbackAsUid */
default void registerDefaultNetworkCallbackAsUid(
int uid, @NonNull NetworkCallback networkCallback, @NonNull Handler handler)
throws UnsupportedApiLevelException {
throw new UnsupportedApiLevelException("Only supported starting from API 31");
}
}