Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f468fa50 authored by Eugene Susla's avatar Eugene Susla
Browse files

Deprecate AbstractRemoteService

Test: presubmit
Change-Id: I1e9f3d201213f3d4e12da612ddaceb3280a92d0d
parent 9a654b28
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -33,7 +33,10 @@ import java.util.List;
 *
 * @param <S> the concrete remote service class
 * @param <I> the interface of the binder service
 *
 * @deprecated Use {@link ServiceConnector} to manage remote service connections
 */
@Deprecated
public abstract class AbstractMultiplePendingRequestsRemoteService<S
        extends AbstractMultiplePendingRequestsRemoteService<S, I>, I extends IInterface>
        extends AbstractRemoteService<S, I> {
+3 −0
Original line number Diff line number Diff line
@@ -58,9 +58,12 @@ import java.util.ArrayList;
 * @param <S> the concrete remote service class
 * @param <I> the interface of the binder service
 *
 * @deprecated Use {@link ServiceConnector} to manage remote service connections
 *
 * @hide
 */
//TODO(b/117779333): improve javadoc above instead of using Autofill as an example
@Deprecated
public abstract class AbstractRemoteService<S extends AbstractRemoteService<S, I>,
        I extends IInterface> implements DeathRecipient {
    private static final int MSG_BIND = 1;
+3 −0
Original line number Diff line number Diff line
@@ -33,8 +33,11 @@ import java.io.PrintWriter;
 * @param <S> the concrete remote service class
 * @param <I> the interface of the binder service
 *
 * @deprecated Use {@link ServiceConnector} to manage remote service connections
 *
 * @hide
 */
@Deprecated
public abstract class AbstractSinglePendingRequestRemoteService<S
        extends AbstractSinglePendingRequestRemoteService<S, I>, I extends IInterface>
        extends AbstractRemoteService<S, I> {