@ConnectMapping for RSocket handling

The new annotation helps to differentiate the handling of connection
level frames (SETUP and METADATA_PUSH) from the 4 stream requests.

Closes gh-23177
This commit is contained in:
Rossen Stoyanchev
2019-07-08 17:04:00 +01:00
parent 507d128e1d
commit c199cb9054
11 changed files with 540 additions and 58 deletions

View File

@@ -105,6 +105,12 @@ public class PathPatternRouteMatcher implements RouteMatcher {
public String value() {
return this.pathContainer.value();
}
@Override
public String toString() {
return value();
}
}
}