@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

@@ -96,6 +96,11 @@ public class SimpleRouteMatcher implements RouteMatcher {
public String value() {
return this.path;
}
@Override
public String toString() {
return value();
}
}
}