T - The type of the parameter.public interface ParameterDescriptor<T>
MethodDescriptor.| Modifier and Type | Method and Description |
|---|---|
boolean |
isAsync()
Determine if the parameter type is asynchronous.
|
boolean |
isStreaming()
Determine if the parameter type is streaming or scalar.
|
Class<T> |
parameterClass()
Get the java
Class for the parameter type. |
SerializerDescriptor<T> |
serializerDescriptor()
Get the
SerializerDescriptor for this parameter. |
boolean isStreaming()
true if the parameter is streaming. false if the parameter is scalar.boolean isAsync()
true if the parameter type is asynchronous. false if the parameter type is synchronous.Class<T> parameterClass()
Class for the parameter type.Class for the parameter type.SerializerDescriptor<T> serializerDescriptor()
SerializerDescriptor for this parameter.SerializerDescriptor for this parameter.