We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5d43a commit 542e985Copy full SHA for 542e985
commons-shared/src/main/scala/com/avsystem/commons/rpc/RPCMetadata.scala
@@ -14,6 +14,9 @@ trait RPCMetadata[T] {
14
def name: String
15
def annotations: List[MetadataAnnotation]
16
def methodsByRpcName: Map[String, MethodMetadata]
17
+
18
+ def getterResultMetadata(rpcName: String): RPCMetadata[_] =
19
+ methodsByRpcName.get(rpcName).collect({ case GetterMetadata(_, resultMetadata) => resultMetadata }).get
20
}
21
22
case class Signature(
version.sbt
@@ -1 +1 @@
1
-version in ThisBuild := "1.12.0"
+version in ThisBuild := "1.13.0"
0 commit comments