You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding missing keywords to automatically close issues.
- Session now makes extensive use of fluent API techniques via data objects declared in <cppwamp/dialoguedata.hpp> and <cppwamp/sessiondata.hpp> (fixes#6, fixes#7, fixes#34)
- Subscription and Registration are now returned via shared pointer (fixes#40).
- Added support for the "low-hanging fruit" among advanced WAMP features (fix#10, fix#11, fix#12, fix#13, fix#14, fix#15, fix#23, fix#24, fix#25, fix#26, fix#27, fix#35, fix#37, fix#38)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ Overhauled API to make use of fluent API techniques. Some Advanced WAMP Profile
11
11
-`internal::ClientImpl` -> `internal::Client`
12
12
- Removed the `Args` class, as similar functionality is now provided by `Payload` with a cleaner API
13
13
- Folded `CoroErrcClient` into `CoroClient` (now `SessionClient`) by taking an extra, optional `std::error_code` pointer
14
-
-`Session` (formerly `Client`) now makes extensive use of fluent API techniques, via data objects declared in `<cppwamp/dialoguedata.hpp>` and `<cppwamp/sessiondata.hpp>` (#6, #7, #34)
15
-
-`Subscription` and `Registration` are now returned via shared pointer, and are no longer "handle" objects that mimic a shared pointer (#40).
14
+
-`Session` (formerly `Client`) now makes extensive use of fluent API techniques, via data objects declared in `<cppwamp/dialoguedata.hpp>` and `<cppwamp/sessiondata.hpp>` (fixes #6, fixes #7, fixes#34)
15
+
-`Subscription` and `Registration` are now returned via shared pointer, and are no longer "handle" objects that mimic a shared pointer (fixes #40).
16
16
- Added `operator[]` support to `Variant`, to make it more convenient to access elements/members.
17
17
- Added `Variant::valueOr` to make it easier to treat a Variant as an optional value.
18
-
- Added support for the "low-hanging fruit" among advanced WAMP features. These are features that only require some `Details` or `Options` attributes to be set, and require no other special treatment by the client (#10, #11, #12, #13, #14, #15, #23, #24, #25, #26, #27, #35, #37, #38):
18
+
- Added support for the "low-hanging fruit" among advanced WAMP features. These are features that only require some `Details` or `Options` attributes to be set, and require no other special treatment by the client (fix #10, fix #11, fix #12, fix #13, fix #14, fix #15, fix #23, fix #24, fix #25, fix #26, fix #27, fix #35, fix #37, fix#38):
0 commit comments