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

Commit c0bc040e authored by Eugene Susla's avatar Eugene Susla Committed by Android (Google) Code Review
Browse files

Merge "Deprecate AbstractRemoteService"

parents d07ced15 f468fa50
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> {