forked from square/retrofit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request square#3038 from square/jakew/skip-callback-execut…
…or/2019-02-28 Add annotation for skipping the callback executor
- Loading branch information
Showing
7 changed files
with
199 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 0 additions & 112 deletions
112
retrofit/src/main/java/retrofit2/ExecutorCallAdapterFactory.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
retrofit/src/main/java/retrofit2/SkipCallbackExecutor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* 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<BodyType>} 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. | ||
* | ||
* <pre>{@code | ||
* @SkipCallbackExecutor | ||
* @Get("user/{id}/token") | ||
* Call<String> getToken(@Path("id") long id); | ||
* }</pre> | ||
* | ||
* This annotation can also be used when a {@link CallAdapter.Factory} <em>explicitly</em> 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 { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.