跳过导航链接
$ A B C D E F G H I J L M N O P R S T U V W Z 

$

$ECHO - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
$ECHO_PARAMETER_DESC - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
$invoke(String, String[], Object[]) - 接口 中的方法com.alibaba.dubbo.rpc.service.GenericService
已过时。
 

A

AbstractExporter<T> - org.apache.dubbo.rpc.protocol中的类
AbstractExporter.
AbstractExporter(Invoker<T>) - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractExporter
 
AbstractInvoker<T> - org.apache.dubbo.rpc.protocol中的类
This Invoker works on Consumer side.
AbstractInvoker(Class<T>, URL) - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractInvoker
 
AbstractInvoker(Class<T>, URL, String[]) - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractInvoker
 
AbstractInvoker(Class<T>, URL, Map<String, Object>) - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractInvoker
 
AbstractProtocol - org.apache.dubbo.rpc.protocol中的类
abstract ProtocolSupport.
AbstractProtocol() - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractProtocol
 
AbstractProxyFactory - org.apache.dubbo.rpc.proxy中的类
AbstractProxyFactory
AbstractProxyFactory() - 类 的构造器org.apache.dubbo.rpc.proxy.AbstractProxyFactory
 
AbstractProxyInvoker<T> - org.apache.dubbo.rpc.proxy中的类
This Invoker works on provider side, delegates RPC to interface implementation.
AbstractProxyInvoker(T, Class<T>, URL) - 类 的构造器org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
AbstractProxyProtocol - org.apache.dubbo.rpc.protocol中的类
AbstractProxyProtocol
AbstractProxyProtocol() - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
AbstractProxyProtocol(Class<?>...) - 类 的构造器org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
ACCESS_LOG_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
AccessLogData - org.apache.dubbo.rpc.support中的类
AccessLogData is a container for log event data.
AccessLogFilter - org.apache.dubbo.rpc.filter中的类
Record access log for the service.
AccessLogFilter() - 类 的构造器org.apache.dubbo.rpc.filter.AccessLogFilter
Default constructor initialize demon thread for writing into access log file with names with access log key defined in url accesslog
ActiveLimitFilter - org.apache.dubbo.rpc.filter中的类
ActiveLimitFilter restrict the concurrent client invocation for a service or service's method from client side.
ActiveLimitFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ActiveLimitFilter
 
ACTIVES_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
addAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
addAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
已过时。
addAttachments(Map<String, String>) - 接口 中的方法org.apache.dubbo.rpc.Result
Add the specified map to existing attachments in this instance.
addAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
addAttachmentsIfAbsent(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
addExportMap(String, Exporter<?>) - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
add
addListener(Invocation, Filter.Listener) - 类 中的方法org.apache.dubbo.rpc.ListenableFilter
 
addObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
addObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
addObjectAttachments(Map<String, Object>) - 接口 中的方法org.apache.dubbo.rpc.Result
Add the specified map to existing attachments in this instance.
addObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
addObjectAttachmentsIfAbsent(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
addRpcException(Class<?>) - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
afterUnExport() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractExporter
subclasses need to override this method to destroy resources.
AppResponse - org.apache.dubbo.rpc中的类
AsyncRpcResult is introduced in 3.0.0 to replace RpcResult, and RpcResult is replaced with AppResponse: AsyncRpcResult is the object that is actually passed in the call chain AppResponse only simply represents the business result The relationship between them can be described as follow, an abstraction of the definition of AsyncRpcResult: Public class AsyncRpcResult implements CompletionStage { ...... } AsyncRpcResult is a future representing an unfinished RPC call, while AppResponse is the actual return type of this call.
AppResponse() - 类 的构造器org.apache.dubbo.rpc.AppResponse
 
AppResponse(Invocation) - 类 的构造器org.apache.dubbo.rpc.AppResponse
 
AppResponse(Object) - 类 的构造器org.apache.dubbo.rpc.AppResponse
 
AppResponse(Throwable) - 类 的构造器org.apache.dubbo.rpc.AppResponse
 
ASYNC_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
asyncCall(Callable<T>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
Async invocation.
asyncCall(Runnable) - 类 中的方法org.apache.dubbo.rpc.RpcContext
one way async call, send request only, and result is not required
AsyncContext - org.apache.dubbo.rpc中的接口
AsyncContext works like javax.servlet.AsyncContext in the Servlet 3.0.
AsyncContextImpl - org.apache.dubbo.rpc中的类
 
AsyncContextImpl() - 类 的构造器org.apache.dubbo.rpc.AsyncContextImpl
 
AsyncRpcResult - org.apache.dubbo.rpc中的类
This class represents an unfinished RPC call, it will hold some context information for this call, for example RpcContext and Invocation, so that when the call finishes and the result returns, it can guarantee all the contexts being recovered as the same as when the call was made before any callback is invoked.
AsyncRpcResult(CompletableFuture<AppResponse>, Invocation) - 类 的构造器org.apache.dubbo.rpc.AsyncRpcResult
 
AsyncToSyncInvoker<T> - org.apache.dubbo.rpc.protocol中的类
This class will work as a wrapper wrapping outside of each protocol invoker.
AsyncToSyncInvoker(Invoker<T>) - 类 的构造器org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
attachInvocationIdIfAsync(URL, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
Idempotent operation: invocation id will be added in async operation by default
AttachmentsAdapter - org.apache.dubbo.rpc中的类
已过时。
AttachmentsAdapter() - 类 的构造器org.apache.dubbo.rpc.AttachmentsAdapter
已过时。
 
AttachmentsAdapter.ObjectToStringMap - org.apache.dubbo.rpc中的类
已过时。
AUTO_ATTACH_INVOCATIONID_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 

B

beginCount(URL, String) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
beginCount(URL, String, int) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
BIZ_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
buildAccessLogData(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
 

C

cancel(boolean) - 类 中的方法org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
canRemove() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
ClassLoaderFilter - org.apache.dubbo.rpc.filter中的类
Set the current execution thread class loader to service interface's class loader.
ClassLoaderFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ClassLoaderFilter
 
clear() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
clear() - 类 中的方法org.apache.dubbo.rpc.AttachmentsAdapter.ObjectToStringMap
已过时。
 
clearAfterEachInvoke(boolean) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
clearAttachments() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
close() - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
com.alibaba.dubbo.rpc.service - 程序包 com.alibaba.dubbo.rpc.service
 
compareTo(TimeoutCountDown) - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
CompatibleFilter - org.apache.dubbo.rpc.filter中的类
CompatibleFilter make the remote method's return value compatible to invoker's version of object.
CompatibleFilter() - 类 的构造器org.apache.dubbo.rpc.filter.CompatibleFilter
 
Constants - org.apache.dubbo.rpc中的接口
 
CONSUMER_MODEL - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
ConsumerContextFilter - org.apache.dubbo.rpc.filter中的类
ConsumerContextFilter set current RpcContext with invoker,invocation, local host, remote host and port for consumer invoker.It does it to make the requires info available to execution thread's RpcContext.
ConsumerContextFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ConsumerContextFilter
 
ContextFilter - org.apache.dubbo.rpc.filter中的类
ContextFilter set the provider RpcContext with invoker, invocation, local port it is using and host for current execution thread.
ContextFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ContextFilter
 

D

DEFAULT_REMOTING_SERVER - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
DEFAULT_STUB_EVENT - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
DEFAULT_TPS_LIMIT_INTERVAL - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
DefaultTPSLimiter - org.apache.dubbo.rpc.filter.tps中的类
DefaultTPSLimiter is a default implementation for tps filter.
DefaultTPSLimiter() - 类 的构造器org.apache.dubbo.rpc.filter.tps.DefaultTPSLimiter
 
DelegateExporterMap - org.apache.dubbo.rpc.protocol中的类
delegate exportermap oper
DelegateExporterMap() - 类 的构造器org.apache.dubbo.rpc.protocol.DelegateExporterMap
 
DEPRECATED_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
DeprecatedFilter - org.apache.dubbo.rpc.filter中的类
DeprecatedFilter logs error message if a invoked method has been marked as deprecated.
DeprecatedFilter() - 类 的构造器org.apache.dubbo.rpc.filter.DeprecatedFilter
 
DeprecatedInvokerListener - org.apache.dubbo.rpc.listener中的类
DeprecatedProtocolFilter
DeprecatedInvokerListener() - 类 的构造器org.apache.dubbo.rpc.listener.DeprecatedInvokerListener
 
destroy() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProtocol
 
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
destroy() - 接口 中的方法org.apache.dubbo.rpc.Protocol
Destroy protocol:
1.
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.InvokerWrapper
 
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
destroy() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
destroy() - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
destroy() - 类 中的方法org.apache.dubbo.rpc.support.MockInvoker
 
destroyAll() - 接口 中的方法org.apache.dubbo.rpc.Invoker
destroy all
destroyed(Invoker<?>) - 接口 中的方法org.apache.dubbo.rpc.InvokerListener
The invoker destroyed.
destroyed(Invoker<?>) - 类 中的方法org.apache.dubbo.rpc.listener.InvokerListenerAdapter
 

E

EchoFilter - org.apache.dubbo.rpc.filter中的类
Dubbo provided default Echo echo service, which is available for all dubbo provider service interface.
EchoFilter() - 类 的构造器org.apache.dubbo.rpc.filter.EchoFilter
 
EchoService - com.alibaba.dubbo.rpc.service中的接口
已过时。
elapsedMillis() - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
endCount(URL, String, long, boolean) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
ExceptionFilter - org.apache.dubbo.rpc.filter中的类
ExceptionInvokerFilter Functions: unexpected exception will be logged in ERROR level on provider side.
ExceptionFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ExceptionFilter
 
ExecuteLimitFilter - org.apache.dubbo.rpc.filter中的类
The maximum parallel execution request count per method per service for the provider.If the max configured executes is set to 10 and if invoke request where it is already 10 then it will throws exception.
ExecuteLimitFilter() - 类 的构造器org.apache.dubbo.rpc.filter.ExecuteLimitFilter
 
EXECUTES_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
export(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
export(Invoker<T>) - 接口 中的方法org.apache.dubbo.rpc.Protocol
Export service for remote invocation:
1.
export(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
export(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
export(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.support.MockProtocol
 
exported(Exporter<?>) - 接口 中的方法org.apache.dubbo.rpc.ExporterListener
The exporter exported.
exported(Exporter<?>) - 类 中的方法org.apache.dubbo.rpc.listener.ExporterListenerAdapter
 
Exporter<T> - org.apache.dubbo.rpc中的接口
Exporter.
ExporterListener - org.apache.dubbo.rpc中的接口
ExporterListener.
ExporterListenerAdapter - org.apache.dubbo.rpc.listener中的类
ExporterListenerAdapter
ExporterListenerAdapter() - 类 的构造器org.apache.dubbo.rpc.listener.ExporterListenerAdapter
 

F

FAIL_PREFIX - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
Filter - org.apache.dubbo.rpc中的接口
Extension for intercepting the invocation for both service provider and consumer, furthermore, most of functions in dubbo are implemented base on the same mechanism.
Filter.Listener - org.apache.dubbo.rpc中的接口
 
FORBIDDEN_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
FORCE_PREFIX - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
FORCE_USE_TAG - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
FutureAdapter<V> - org.apache.dubbo.rpc.protocol.dubbo中的类
This is the type of the Future instance users get in an async call: 1. unwrap AppResponse in appResponseFuture and convert to plain biz result represented by FutureAdapter. 2. customized behaviors meaningful for RPC, for example, FutureAdapter.cancel(boolean)
FutureAdapter(CompletableFuture<AppResponse>) - 类 的构造器org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
FutureContext - org.apache.dubbo.rpc中的类
Used for async call scenario.
FutureContext() - 类 的构造器org.apache.dubbo.rpc.FutureContext
 

G

GENERIC_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
GenericException - com.alibaba.dubbo.rpc.service中的异常错误
已过时。
GenericException() - 异常错误 的构造器com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
GenericException(String, String) - 异常错误 的构造器com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
GenericException(Throwable) - 异常错误 的构造器com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
GenericFilter - org.apache.dubbo.rpc.filter中的类
GenericInvokerFilter.
GenericFilter() - 类 的构造器org.apache.dubbo.rpc.filter.GenericFilter
 
GenericImplFilter - org.apache.dubbo.rpc.filter中的类
GenericImplInvokerFilter
GenericImplFilter() - 类 的构造器org.apache.dubbo.rpc.filter.GenericImplFilter
 
GenericService - com.alibaba.dubbo.rpc.service中的接口
已过时。
get() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
get(long, TimeUnit) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
get() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
This method will always return after a maximum 'timeout' waiting: 1. if value returns before timeout, return normally. 2. if no value returns after timeout, throw TimeoutException.
get(long, TimeUnit) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
get(Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
get() - 类 中的方法org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
get(long, TimeUnit) - 类 中的方法org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
get() - 接口 中的方法org.apache.dubbo.rpc.Result
 
get(long, TimeUnit) - 接口 中的方法org.apache.dubbo.rpc.Result
 
get() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get values.
get(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
get value.
get(Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
get(String) - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get value.
getActive() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get active.
getAddress() - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
getAppResponse() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getArguments() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get arguments.
getArguments() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get arguments.
getArguments() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getArguments(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getAsyncContext() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getAttachment(String) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getAttachment(String) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getAttachment(String) - 接口 中的方法org.apache.dubbo.rpc.Invocation
get attachment by key.
getAttachment(String, String) - 接口 中的方法org.apache.dubbo.rpc.Invocation
get attachment by key with default value.
getAttachment(String) - 接口 中的方法org.apache.dubbo.rpc.Result
get attachment by key.
getAttachment(String, String) - 接口 中的方法org.apache.dubbo.rpc.Result
get attachment by key with default value.
getAttachment(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
getAttachment(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
getAttachments() - 类 中的方法org.apache.dubbo.rpc.AppResponse
已过时。
getAttachments() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
已过时。
getAttachments() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get attachments.
getAttachments() - 接口 中的方法org.apache.dubbo.rpc.Result
get attachments.
getAttachments() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
getAttachments() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
getAttribute(String) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getAttributes() - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getAttributes() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getAverageElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get average elapsed.
getAverageTps() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
Calculate average TPS (Transaction per second).
getCode() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
getCompatibleCompletableFuture() - 类 中的方法org.apache.dubbo.rpc.FutureContext
已过时。
getCompatibleParamSignatures() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get parameter's signature, string representation of parameter types.
getCompatibleParamSignatures() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getCompletableFuture() - 类 中的方法org.apache.dubbo.rpc.FutureContext
get future.
getCompletableFuture() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get CompletableFuture.
getConsumerUrl() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getContext() - 类 中的静态方法org.apache.dubbo.rpc.FutureContext
 
getContext() - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
get context.
getDefaultPort() - 接口 中的方法org.apache.dubbo.rpc.Protocol
Get default port when user doesn't config the port.
getDefaultPort() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
getDefaultPort() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
getDefaultPort() - 类 中的方法org.apache.dubbo.rpc.support.MockProtocol
 
getException() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getException() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getException() - 接口 中的方法org.apache.dubbo.rpc.Result
Get exception.
getExceptionClass() - 异常错误 中的方法com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
getExceptionMessage() - 异常错误 中的方法com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
getExecutor() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getExport(String) - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
get export
getExporterMap() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProtocol
 
getExporterMap() - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
get the exports
getExporters() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProtocol
 
getExporters() - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
get all exports
getFailed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get failed.
getFailedAverageElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get failed average elapsed.
getFailedElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get failed elapsed.
getFailedMaxElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get failed max elapsed.
getFuture() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get future.
getGroup() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getInterface() - 接口 中的方法org.apache.dubbo.rpc.Invoker
get service interface.
getInterface() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
getInterface() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
getInterface() - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
getInterface() - 类 中的方法org.apache.dubbo.rpc.protocol.InvokerWrapper
 
getInterface() - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
getInterface() - 类 中的方法org.apache.dubbo.rpc.support.MockInvoker
 
getInterfaceName() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getInternalFuture() - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 
getInvocation() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
Replace to getMethodName(), getParameterTypes(), getArguments()
getInvocationId(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getInvokeMode() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getInvokeMode(URL, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getInvoker() - 接口 中的方法org.apache.dubbo.rpc.Exporter
get invoker.
getInvoker() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get the invoker in current context.
getInvoker() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerExporterWrapper
 
getInvoker() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractExporter
 
getInvoker() - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
getInvoker(T, Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.proxy.javassist.JavassistProxyFactory
 
getInvoker(T, Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.proxy.jdk.JdkProxyFactory
 
getInvoker(T, Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.proxy.wrapper.StubProxyFactoryWrapper
 
getInvoker(T, Class<T>, URL) - 接口 中的方法org.apache.dubbo.rpc.ProxyFactory
create invoker.
getInvoker() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
Replace to getUrl()
getInvoker() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getInvokers() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
Replace to getUrls()
getLocalAddress() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get local address.
getLocalAddressString() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getLocalHost() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get local host.
getLocalHostName() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get local host name.
getLocalPort() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get local port.
getLogMessage() - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
 
getMaxElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get max elapsed.
getMethodName() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get method name.
getMethodName() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get method name.
getMethodName() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getMethodName(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getMockObject(String, Class) - 类 中的静态方法org.apache.dubbo.rpc.support.MockInvoker
 
getObjectAttachment(String) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getObjectAttachment(String) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getObjectAttachment(String) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getObjectAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getObjectAttachment(String) - 接口 中的方法org.apache.dubbo.rpc.Result
get attachment by key.
getObjectAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Result
get attachment by key with default value.
getObjectAttachment(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
get attachment.
getObjectAttachment(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
getObjectAttachments() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getObjectAttachments() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getObjectAttachments() - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getObjectAttachments() - 接口 中的方法org.apache.dubbo.rpc.Result
get attachments.
getObjectAttachments() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get attachments.
getObjectAttachments() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getParameterTypes() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get parameter types.
getParameterTypes() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get parameter types.
getParameterTypes() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getParameterTypes(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getParameterTypesDesc() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getProtocol() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getProtocolServiceKey() - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getProtocolServiceKey() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getProtocolServiceKey() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getProxy(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyFactory
 
getProxy(Invoker<T>, boolean) - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyFactory
 
getProxy(Invoker<T>, Class<?>[]) - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyFactory
 
getProxy(Invoker<T>, Class<?>[]) - 类 中的方法org.apache.dubbo.rpc.proxy.javassist.JavassistProxyFactory
 
getProxy(Invoker<T>, Class<?>[]) - 类 中的方法org.apache.dubbo.rpc.proxy.jdk.JdkProxyFactory
 
getProxy(Invoker<T>, boolean) - 类 中的方法org.apache.dubbo.rpc.proxy.wrapper.StubProxyFactoryWrapper
 
getProxy(Invoker<T>) - 类 中的方法org.apache.dubbo.rpc.proxy.wrapper.StubProxyFactoryWrapper
 
getProxy(Invoker<T>) - 接口 中的方法org.apache.dubbo.rpc.ProxyFactory
create proxy.
getProxy(Invoker<T>, boolean) - 接口 中的方法org.apache.dubbo.rpc.ProxyFactory
create proxy.
getProxyFactory() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
getRemoteAddress() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get remote address.
getRemoteAddressString() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get remote address string.
getRemoteApplicationName() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getRemoteHost() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get remote host.
getRemoteHostName() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get remote host name.
getRemotePort() - 类 中的方法org.apache.dubbo.rpc.RpcContext
get remote port.
getRemotingServer() - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
getRequest() - 类 中的方法org.apache.dubbo.rpc.RpcContext
Get the request object of the underlying RPC protocol, e.g.
getRequest(Class<T>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
Get the request object of the underlying RPC protocol, e.g.
getResponse() - 类 中的方法org.apache.dubbo.rpc.RpcContext
Get the response object of the underlying RPC protocol, e.g.
getResponse(Class<T>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
Get the response object of the underlying RPC protocol, e.g.
getResponseFuture() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
getReturnType() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getReturnType(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getReturnTypes() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getReturnTypes(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getServerContext() - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
get server side context.
getServers() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProtocol
 
getServers() - 接口 中的方法org.apache.dubbo.rpc.Protocol
Get all servers serving this protocol
getServers() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
getServers() - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
getServiceKey() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getServiceName() - 接口 中的方法org.apache.dubbo.rpc.Invocation
get the interface name
getServiceName() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getServiceName() - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Return gthe service of access log entry
getStatus(URL) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
getStatus(URL, String) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
getSucceeded() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get succeeded.
getSucceededAverageElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get succeeded average elapsed.
getSucceededElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get succeeded elapsed.
getSucceededMaxElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get succeeded max elapsed.
getTargetServiceUniqueName() - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
getTargetServiceUniqueName() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
getThrowable(String) - 类 中的静态方法org.apache.dubbo.rpc.support.MockInvoker
 
getTimeout(Invocation, long) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getTimeout(URL, String, RpcContext, long) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
getTimeoutInMilli() - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
getTotal() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get total.
getTotalElapsed() - 类 中的方法org.apache.dubbo.rpc.RpcStatus
get total elapsed.
getUrl() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.protocol.InvokerWrapper
 
getUrl() - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getUrl() - 类 中的方法org.apache.dubbo.rpc.support.MockInvoker
 
getUrls() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getValue() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
getValue() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
Notice the return type of AsyncRpcResult.getValue() is the actual type of the RPC method, not AppResponse
getValue() - 接口 中的方法org.apache.dubbo.rpc.Result
Get invoke result.
getVersion() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
getZoneOfCurrentRequest(Invocation) - 接口 中的方法org.apache.dubbo.rpc.ZoneDetector
 

H

hasException() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
hasException() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
hasException() - 接口 中的方法org.apache.dubbo.rpc.Result
Has exception.

I

ID_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
INPUT_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
INTERFACE - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
INTERFACES - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
Invocation - org.apache.dubbo.rpc中的接口
Invocation.
INVOCATION_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.AccessLogFilter
This method logs the access log for service method invocation call.
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ActiveLimitFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ClassLoaderFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.CompatibleFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ConsumerContextFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ContextFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.DeprecatedFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.EchoFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExceptionFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExecuteLimitFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericImplFilter
 
invoke(Invoker<?>, Invocation) - 接口 中的方法org.apache.dubbo.rpc.Filter
Make sure call invoker.invoke() in your implementation.
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.TimeoutFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.TokenFilter
 
invoke(Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.TpsLimitFilter
 
invoke(Invocation) - 接口 中的方法org.apache.dubbo.rpc.Invoker
invoke.
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.protocol.InvokerWrapper
 
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
invoke(Object, Method, Object[]) - 类 中的方法org.apache.dubbo.rpc.proxy.InvokerInvocationHandler
 
invoke(Invocation) - 类 中的方法org.apache.dubbo.rpc.support.MockInvoker
 
InvokeMode - org.apache.dubbo.rpc中的枚举
 
Invoker<T> - org.apache.dubbo.rpc中的接口
Invoker.
InvokerInvocationHandler - org.apache.dubbo.rpc.proxy中的类
InvokerHandler
InvokerInvocationHandler(Invoker<?>) - 类 的构造器org.apache.dubbo.rpc.proxy.InvokerInvocationHandler
 
InvokerListener - org.apache.dubbo.rpc中的接口
InvokerListener.
InvokerListenerAdapter - org.apache.dubbo.rpc.listener中的类
InvokerListenerAdapter
InvokerListenerAdapter() - 类 的构造器org.apache.dubbo.rpc.listener.InvokerListenerAdapter
 
InvokerWrapper<T> - org.apache.dubbo.rpc.protocol中的类
InvokerWrapper
InvokerWrapper(Invoker<T>, URL) - 类 的构造器org.apache.dubbo.rpc.protocol.InvokerWrapper
 
IS_SERVER_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
isAllowable(URL, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.tps.DefaultTPSLimiter
 
isAllowable(URL, Invocation) - 接口 中的方法org.apache.dubbo.rpc.filter.tps.TPSLimiter
judge if the current invocation is allowed by TPS rule
isAsync(URL, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isAsyncStarted() - 接口 中的方法org.apache.dubbo.rpc.AsyncContext
 
isAsyncStarted() - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 
isAsyncStarted() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.protocol.AsyncToSyncInvoker
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.protocol.InvokerWrapper
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
isAvailable() - 类 中的方法org.apache.dubbo.rpc.support.MockInvoker
 
isBiz() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isCancelled() - 类 中的方法org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
isClientSide() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
Replace to isConsumerSide()
isConsumerSide() - 类 中的方法org.apache.dubbo.rpc.RpcContext
is consumer side.
isDestroyed() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
isDone() - 类 中的方法org.apache.dubbo.rpc.protocol.dubbo.FutureAdapter
 
isEcho(String, String) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isEmpty() - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
check is empty map
isExpired() - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
isForbidden() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isGenericAsync(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isGenericCall(String, String) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isLimitExceed() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isNetwork() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isNoInvokerAvailableAfterFilter() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isOneway(URL, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isProviderSide() - 类 中的方法org.apache.dubbo.rpc.RpcContext
is provider side.
isReturnTypeFuture(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.support.RpcUtils
 
isSerialization() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isServerSide() - 类 中的方法org.apache.dubbo.rpc.RpcContext
已过时。
Replace to isProviderSide()
isTimeout() - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
isZoneForcingEnabled(Invocation, String) - 接口 中的方法org.apache.dubbo.rpc.ZoneDetector
 

J

JavassistProxyFactory - org.apache.dubbo.rpc.proxy.javassist中的类
JavassistRpcProxyFactory
JavassistProxyFactory() - 类 的构造器org.apache.dubbo.rpc.proxy.javassist.JavassistProxyFactory
 
JdkProxyFactory - org.apache.dubbo.rpc.proxy.jdk中的类
JdkRpcProxyFactory
JdkProxyFactory() - 类 的构造器org.apache.dubbo.rpc.proxy.jdk.JdkProxyFactory
 

L

LIMIT_EXCEEDED_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
ListenableFilter - org.apache.dubbo.rpc中的类
It's recommended to implement Filter.Listener directly for callback registration, check the default implementation, see ExceptionFilter, for example.
ListenableFilter() - 类 的构造器org.apache.dubbo.rpc.ListenableFilter
 
listener() - 类 中的方法org.apache.dubbo.rpc.ListenableFilter
 
listener(Invocation) - 类 中的方法org.apache.dubbo.rpc.ListenableFilter
 
ListenerExporterWrapper<T> - org.apache.dubbo.rpc.listener中的类
ListenerExporter
ListenerExporterWrapper(Exporter<T>, List<ExporterListener>) - 类 的构造器org.apache.dubbo.rpc.listener.ListenerExporterWrapper
 
ListenerInvokerWrapper<T> - org.apache.dubbo.rpc.listener中的类
ListenerInvoker
ListenerInvokerWrapper(Invoker<T>, List<InvokerListener>) - 类 的构造器org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
LOCAL_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
LOCAL_PROTOCOL - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 

M

MERGER_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
METHOD_MODEL - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
MOCK_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
MockInvoker<T> - org.apache.dubbo.rpc.support中的类
 
MockInvoker(URL, Class<T>) - 类 的构造器org.apache.dubbo.rpc.support.MockInvoker
 
MockProtocol - org.apache.dubbo.rpc.support中的类
MockProtocol is used for generating a mock invoker by URL and type on consumer side
MockProtocol() - 类 的构造器org.apache.dubbo.rpc.support.MockProtocol
 

N

NETWORK_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
newCountDown(long, TimeUnit) - 类 中的静态方法org.apache.dubbo.rpc.TimeoutCountDown
 
newDefaultAsyncResult(AppResponse, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.AsyncRpcResult
Some utility methods used to quickly generate default AsyncRpcResult instance.
newDefaultAsyncResult(Invocation) - 类 中的静态方法org.apache.dubbo.rpc.AsyncRpcResult
 
newDefaultAsyncResult(Object, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.AsyncRpcResult
 
newDefaultAsyncResult(Throwable, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.AsyncRpcResult
 
newDefaultAsyncResult(Object, Throwable, Invocation) - 类 中的静态方法org.apache.dubbo.rpc.AsyncRpcResult
 
newLogData() - 类 中的静态方法org.apache.dubbo.rpc.support.AccessLogData
Get new instance of log data.
NO_INVOKER_AVAILABLE_AFTER_FILTER - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
normalizeMock(String) - 类 中的静态方法org.apache.dubbo.rpc.support.MockInvoker
Normalize mock string: return => return null fail => default force => default fail:throw/return foo => throw/return foo force:throw/return foo => throw/return foo

O

ObjectToStringMap(Map<String, Object>) - 类 的构造器org.apache.dubbo.rpc.AttachmentsAdapter.ObjectToStringMap
已过时。
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ActiveLimitFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.CompatibleFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ContextFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExceptionFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExecuteLimitFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericFilter
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericImplFilter
 
onError(Throwable, Invoker<?>, Invocation) - 接口 中的方法org.apache.dubbo.rpc.Filter.Listener
 
onError(Throwable, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.TimeoutFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ActiveLimitFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.CompatibleFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ContextFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExceptionFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.ExecuteLimitFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericFilter
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.GenericImplFilter
 
onResponse(Result, Invoker<?>, Invocation) - 接口 中的方法org.apache.dubbo.rpc.Filter.Listener
 
onResponse(Result, Invoker<?>, Invocation) - 类 中的方法org.apache.dubbo.rpc.filter.TimeoutFilter
 
org.apache.dubbo.rpc - 程序包 org.apache.dubbo.rpc
 
org.apache.dubbo.rpc.filter - 程序包 org.apache.dubbo.rpc.filter
 
org.apache.dubbo.rpc.filter.tps - 程序包 org.apache.dubbo.rpc.filter.tps
 
org.apache.dubbo.rpc.listener - 程序包 org.apache.dubbo.rpc.listener
 
org.apache.dubbo.rpc.protocol - 程序包 org.apache.dubbo.rpc.protocol
 
org.apache.dubbo.rpc.protocol.dubbo - 程序包 org.apache.dubbo.rpc.protocol.dubbo
FutureAdapter was in dubbo-rpc-dubbo module, considering some users will use this class directly, keep the package not changed.
org.apache.dubbo.rpc.proxy - 程序包 org.apache.dubbo.rpc.proxy
 
org.apache.dubbo.rpc.proxy.javassist - 程序包 org.apache.dubbo.rpc.proxy.javassist
 
org.apache.dubbo.rpc.proxy.jdk - 程序包 org.apache.dubbo.rpc.proxy.jdk
 
org.apache.dubbo.rpc.proxy.wrapper - 程序包 org.apache.dubbo.rpc.proxy.wrapper
 
org.apache.dubbo.rpc.support - 程序包 org.apache.dubbo.rpc.support
 
OUTPUT_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 

P

parseMockValue(String) - 类 中的静态方法org.apache.dubbo.rpc.support.MockInvoker
 
parseMockValue(String, Type[]) - 类 中的静态方法org.apache.dubbo.rpc.support.MockInvoker
 
Protocol - org.apache.dubbo.rpc中的接口
Protocol.
protocolBindingRefer(Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.support.MockProtocol
 
ProtocolFilterWrapper - org.apache.dubbo.rpc.protocol中的类
ListenerProtocol
ProtocolFilterWrapper(Protocol) - 类 的构造器org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
ProtocolListenerWrapper - org.apache.dubbo.rpc.protocol中的类
ListenerProtocol
ProtocolListenerWrapper(Protocol) - 类 的构造器org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
ProtocolServer - org.apache.dubbo.rpc中的接口
Distinct from RemotingServer, each protocol holds one or more ProtocolServers(the number usually decides by port numbers), while each ProtocolServer holds zero or one RemotingServer.
PROXY_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
ProxyFactory - org.apache.dubbo.rpc中的接口
ProxyFactory.
put(String, String) - 类 中的方法org.apache.dubbo.rpc.AttachmentsAdapter.ObjectToStringMap
已过时。
 
put(Object, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
put(Object, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
putAll(Map<? extends String, ? extends String>) - 类 中的方法org.apache.dubbo.rpc.AttachmentsAdapter.ObjectToStringMap
已过时。
 

R

recreate() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
recreate() - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
recreate() - 接口 中的方法org.apache.dubbo.rpc.Result
Recreate.
refer(Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProtocol
 
refer(Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper
 
refer(Class<T>, URL) - 类 中的方法org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper
 
refer(Class<T>, URL) - 接口 中的方法org.apache.dubbo.rpc.Protocol
Refer a remote service:
1.
referred(Invoker<?>) - 接口 中的方法org.apache.dubbo.rpc.InvokerListener
The invoker referred
referred(Invoker<?>) - 类 中的方法org.apache.dubbo.rpc.listener.DeprecatedInvokerListener
 
referred(Invoker<?>) - 类 中的方法org.apache.dubbo.rpc.listener.InvokerListenerAdapter
 
remove(Object) - 类 中的方法org.apache.dubbo.rpc.AttachmentsAdapter.ObjectToStringMap
已过时。
 
remove(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
remove value.
removeAttachment(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
remove attachment.
removeContext() - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
remove context.
removeContext(boolean) - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
customized for internal use.
removeExportMap(String, Exporter<?>) - 类 中的方法org.apache.dubbo.rpc.protocol.DelegateExporterMap
delete
removeListener(Invocation) - 类 中的方法org.apache.dubbo.rpc.ListenableFilter
 
removeServerContext() - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
remove server side context.
removeStatus(URL) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
removeStatus(URL, String) - 类 中的静态方法org.apache.dubbo.rpc.RpcStatus
 
reset(URL) - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
restoreContext(RpcContext) - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
 
restoreServerContext(RpcContext) - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
 
Result - org.apache.dubbo.rpc中的接口
(API, Prototype, NonThreadSafe) An RPC Result.
RETURN_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
RETURN_PREFIX - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
RpcConstants - org.apache.dubbo.rpc中的类
已过时。
Replace to org.apache.dubbo.common.Constants
RpcContext - org.apache.dubbo.rpc中的类
Thread local context.
RpcException - org.apache.dubbo.rpc中的异常错误
RPC Exception.
RpcException() - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(String, Throwable) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(String) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(Throwable) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(int) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(int, String, Throwable) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(int, String) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcException(int, Throwable) - 异常错误 的构造器org.apache.dubbo.rpc.RpcException
 
RpcInvocation - org.apache.dubbo.rpc中的类
RPC Invocation.
RpcInvocation() - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(Invocation, Invoker<?>) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(Invocation) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(Method, String, String, Object[]) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(Method, String, String, Object[], Map<String, Object>, Map<Object, Object>) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(String, String, String, Class<?>[], Object[]) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(String, String, String, Class<?>[], Object[], Map<String, Object>) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcInvocation(String, String, String, Class<?>[], Object[], Map<String, Object>, Invoker<?>, Map<Object, Object>) - 类 的构造器org.apache.dubbo.rpc.RpcInvocation
 
RpcStatus - org.apache.dubbo.rpc中的类
URL statistics.
RpcUtils - org.apache.dubbo.rpc.support中的类
RpcUtils
RpcUtils() - 类 的构造器org.apache.dubbo.rpc.support.RpcUtils
 

S

SCOPE_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
SCOPE_LOCAL - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
SCOPE_REMOTE - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
SERIALIZATION_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
SERIALIZATION_ID_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
SERIALIZATION_SECURITY_CHECK_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
set(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set value.
set(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcStatus
set value.
setAddress(String) - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
setArguments(Object[]) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setArguments(Object[]) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setArguments(Object[]) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Sets invocation arguments
setAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setAttachment(String, String) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setAttachment(String, String) - 接口 中的方法org.apache.dubbo.rpc.Result
 
setAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Result
 
setAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set attachment.
setAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setAttachment(String, String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setAttachmentIfAbsent(String, String) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setAttachmentIfAbsent(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setAttachmentIfAbsent(String, String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setAttachmentIfAbsent(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
Append all items from the map into the attachment, if map is empty then nothing happens
setAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setAttachments(Map<String, String>) - 接口 中的方法org.apache.dubbo.rpc.Result
Replace the existing attachments with the specified param.
setAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set attachments
setAttachments(Map<String, String>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
已过时。
setAttribute(String, Object) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setCode(int) - 异常错误 中的方法org.apache.dubbo.rpc.RpcException
 
setCompatibleFuture(CompletableFuture<?>) - 类 中的方法org.apache.dubbo.rpc.FutureContext
已过时。
setCompatibleParamSignatures(String[]) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setConsumerUrl(URL) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setException(Throwable) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setException(Throwable) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setException(Throwable) - 接口 中的方法org.apache.dubbo.rpc.Result
 
setExceptionClass(String) - 异常错误 中的方法com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
setExceptionMessage(String) - 异常错误 中的方法com.alibaba.dubbo.rpc.service.GenericException
已过时。
 
setExecutor(Executor) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setFuture(CompletableFuture<?>) - 类 中的方法org.apache.dubbo.rpc.FutureContext
set future.
setFuture(CompletableFuture<?>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set future.
setGroup(String) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Add group name
setInvocation(Invocation) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setInvocationTime(Date) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Set the invocation date.
setInvokeMode(InvokeMode) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setInvoker(Invoker<?>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setInvoker(Invoker<?>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setInvokers(List<Invoker<?>>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setLocalAddress(String, int) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set local address.
setLocalAddress(InetSocketAddress) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set local address.
setLogger(Logger) - 类 中的方法org.apache.dubbo.rpc.filter.ExceptionFilter
 
setMethodName(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setMethodName(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setMethodName(String) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Set target method name.
setObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setObjectAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setObjectAttachment(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Result
 
setObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setObjectAttachment(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setObjectAttachmentIfAbsent(String, Object) - 接口 中的方法org.apache.dubbo.rpc.Invocation
 
setObjectAttachmentIfAbsent(String, Object) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setObjectAttachments(Map<String, Object>) - 接口 中的方法org.apache.dubbo.rpc.Result
Replace the existing attachments with the specified param.
setObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set attachments
setObjectAttachments(Map<String, Object>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setParameterTypes(Class<?>[]) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setParameterTypes(Class<?>[]) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setParameterTypesDesc(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setProtocol(Protocol) - 类 中的方法org.apache.dubbo.rpc.proxy.wrapper.StubProxyFactoryWrapper
 
setProxyFactory(ProxyFactory) - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractProxyProtocol
 
setRemoteAddress(String, int) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set remote address.
setRemoteAddress(InetSocketAddress) - 类 中的方法org.apache.dubbo.rpc.RpcContext
set remote address.
setRemoteApplicationName(String) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setRemotingServers(RemotingServer) - 接口 中的方法org.apache.dubbo.rpc.ProtocolServer
 
setRequest(Object) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setResponse(Object) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setResponseFuture(CompletableFuture<AppResponse>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
setReturnType(Class<?>) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setReturnTypes(Type[]) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setRpcContext(URL) - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
 
setServiceName(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setServiceName(String) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Add service name.
setTargetServiceUniqueName(String) - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
setTypes(Class[]) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Set invocation's method's input parameter's types
setUrl(URL) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setUrls(List<URL>) - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
setValue(Object) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
setValue(Object) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
CompletableFuture can only be completed once, so try to update the result of one completed CompletableFuture will has no effect.
setValue(Object) - 接口 中的方法org.apache.dubbo.rpc.Result
 
setVersion(String) - 类 中的方法org.apache.dubbo.rpc.support.AccessLogData
Add version information.
signalContextSwitch() - 接口 中的方法org.apache.dubbo.rpc.AsyncContext
Signal RpcContext switch.
signalContextSwitch() - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 
stackTraceField - 类 中的静态变量org.apache.dubbo.rpc.proxy.InvokerInvocationHandler
 
start() - 接口 中的方法org.apache.dubbo.rpc.AsyncContext
change the context state to start
start() - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 
startAsync() - 类 中的静态方法org.apache.dubbo.rpc.RpcContext
 
stop() - 接口 中的方法org.apache.dubbo.rpc.AsyncContext
change the context state to stop
stop() - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 
stopAsync() - 类 中的方法org.apache.dubbo.rpc.RpcContext
 
STUB_EVENT_METHODS_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
STUB_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
StubProxyFactoryWrapper - org.apache.dubbo.rpc.proxy.wrapper中的类
StubProxyFactoryWrapper
StubProxyFactoryWrapper(ProxyFactory) - 类 的构造器org.apache.dubbo.rpc.proxy.wrapper.StubProxyFactoryWrapper
 

T

thenApply(Function<Result, ? extends U>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
thenApply(Function<Result, ? extends U>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
thenApply(Function<Result, ? extends U>) - 接口 中的方法org.apache.dubbo.rpc.Result
 
THROW_PREFIX - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
TIMEOUT_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
TIMEOUT_TERMINATE - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 
TimeoutCountDown - org.apache.dubbo.rpc中的类
 
TimeoutFilter - org.apache.dubbo.rpc.filter中的类
Log any invocation timeout, but don't stop server from running
TimeoutFilter() - 类 的构造器org.apache.dubbo.rpc.filter.TimeoutFilter
 
timeRemaining(TimeUnit) - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
TOKEN_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
TokenFilter - org.apache.dubbo.rpc.filter中的类
Perform check whether given provider token is matching with remote token or not.
TokenFilter() - 类 的构造器org.apache.dubbo.rpc.filter.TokenFilter
 
toString() - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
toString() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerInvokerWrapper
 
toString() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractExporter
 
toString() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractInvoker
 
toString() - 类 中的方法org.apache.dubbo.rpc.proxy.AbstractProxyInvoker
 
toString() - 类 中的方法org.apache.dubbo.rpc.RpcInvocation
 
toString() - 类 中的方法org.apache.dubbo.rpc.TimeoutCountDown
 
TPS_LIMIT_INTERVAL_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
TPS_LIMIT_RATE_KEY - 接口 中的静态变量org.apache.dubbo.rpc.Constants
 
TPSLimiter - org.apache.dubbo.rpc.filter.tps中的接口
Provide boolean information whether a invocation of a provider service's methods or a particular method is allowed within a last invocation and current invocation.
TpsLimitFilter - org.apache.dubbo.rpc.filter中的类
TpsLimitFilter limit the TPS (transaction per second) for all method of a service or a particular method.
TpsLimitFilter() - 类 的构造器org.apache.dubbo.rpc.filter.TpsLimitFilter
 

U

unexport() - 接口 中的方法org.apache.dubbo.rpc.Exporter
unexport.
unexport() - 类 中的方法org.apache.dubbo.rpc.listener.ListenerExporterWrapper
 
unexport() - 类 中的方法org.apache.dubbo.rpc.protocol.AbstractExporter
 
unexported(Exporter<?>) - 接口 中的方法org.apache.dubbo.rpc.ExporterListener
The exporter unexported.
unexported(Exporter<?>) - 类 中的方法org.apache.dubbo.rpc.listener.ExporterListenerAdapter
 
UNKNOWN_EXCEPTION - 异常错误 中的静态变量org.apache.dubbo.rpc.RpcException
 

V

valueOf(String) - 枚举 中的静态方法org.apache.dubbo.rpc.InvokeMode
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.apache.dubbo.rpc.InvokeMode
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

W

whenCompleteWithContext(BiConsumer<Result, Throwable>) - 类 中的方法org.apache.dubbo.rpc.AppResponse
 
whenCompleteWithContext(BiConsumer<Result, Throwable>) - 类 中的方法org.apache.dubbo.rpc.AsyncRpcResult
 
whenCompleteWithContext(BiConsumer<Result, Throwable>) - 接口 中的方法org.apache.dubbo.rpc.Result
Add a callback which can be triggered when the RPC call finishes.
write(Object) - 接口 中的方法org.apache.dubbo.rpc.AsyncContext
write value and complete the async context.
write(Object) - 类 中的方法org.apache.dubbo.rpc.AsyncContextImpl
 

Z

ZoneDetector - org.apache.dubbo.rpc中的接口
Extend and provide your own implementation if you want to distribute traffic around registries.
$ A B C D E F G H I J L M N O P R S T U V W Z 
跳过导航链接

Copyright © 2011–2021 The Apache Software Foundation. All rights reserved.