-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/dart-rid-api: rid object combining Rid API and config (#28)
* rid-macro: more consistent use of rid config globals names * rid-macro: rid.debugReply exposes _RID_DEBUG_REPLY * rid-macro: rid.debugLock exposes _RID_DEBUG_LOCK * rid-macro: rid.msgTimeout instead of separate global * rid-macro: exposing limited rid.replyChannel API * rid-build: expose limited rid.messageChannel API * rid-build: rename ReplyChannel to RidReplyChannel * rid-build: correcting rid message toString * rid-build: renaming msgTimeout to replyTimeout * test: adapting tests to API changes * examples: adapting to latest API
- Loading branch information
Showing
22 changed files
with
243 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class ReplyChannelStub { | ||
class RidReplyChannelStub { | ||
Future<void> dispose() => Future.value(); | ||
} | ||
|
||
/// Stubbing reply channel until we declare a #[rid:reply] enum. | ||
final replyChannel = ReplyChannelStub(); | ||
final _replyChannel = RidReplyChannelStub(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.