retrofit2.SkipCallbackExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retrofit Show documentation
Show all versions of retrofit Show documentation
A type-safe HTTP client for Android and Java.
/*
* Copyright (C) 2019 Square, Inc.
*
* 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 retrofit2;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.lang.reflect.Type;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Change the behavior of a {@code Call} return type to not use the
* {@linkplain Retrofit#callbackExecutor() callback executor} for invoking the
* {@link Callback#onResponse(Call, Response) onResponse} or
* {@link Callback#onFailure(Call, Throwable) onFailure} methods.
*
*
* @SkipCallbackExecutor
* @GET("user/{id}/token")
* Call<String> getToken(@Path("id") long id);
*
*
* This annotation can also be used when a {@link CallAdapter.Factory} explicitly delegates
* to the built-in factory for {@link Call} via
* {@link Retrofit#nextCallAdapter(CallAdapter.Factory, Type, Annotation[])} in order for the
* returned {@link Call} to skip the executor. (Note: by default, a {@link Call} supplied directly
* to a {@link CallAdapter} will already skip the callback executor. The annotation is only useful
* when looking up the built-in adapter.)
*/
@Documented
@Target(METHOD)
@Retention(RUNTIME)
public @interface SkipCallbackExecutor {
}