forked from apache/dubbo
-
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.
Fixes apache#3620, provider attachment lose on consumer side, fix thi…
…s by reverting RpcContext copy
- Loading branch information
Showing
4 changed files
with
62 additions
and
43 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
52 changes: 52 additions & 0 deletions
52
dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/FutureContext.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,52 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 org.apache.dubbo.rpc; | ||
|
||
import java.util.concurrent.CompletableFuture; | ||
|
||
/** | ||
* Used for async call scenario. But if the method you are calling has a {@link CompletableFuture<?>} signature | ||
* you do not need to use this class since you will get a Future response directly. | ||
* <p> | ||
* Remember to save the Future reference before making another call using the same thread, otherwise, | ||
* the current Future will be override by the new one, which means you will lose the chance get the return value. | ||
*/ | ||
public class FutureContext { | ||
|
||
public static ThreadLocal<CompletableFuture<?>> futureTL = new ThreadLocal<>(); | ||
|
||
/** | ||
* get future. | ||
* | ||
* @param <T> | ||
* @return future | ||
*/ | ||
@SuppressWarnings("unchecked") | ||
public static <T> CompletableFuture<T> getCompletableFuture() { | ||
return (CompletableFuture<T>) futureTL.get(); | ||
} | ||
|
||
/** | ||
* set future. | ||
* | ||
* @param future | ||
*/ | ||
public static void setFuture(CompletableFuture<?> future) { | ||
futureTL.set(future); | ||
} | ||
|
||
} |
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