-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Platform encapsulation #235
Merged
Merged
Conversation
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
…cationReadyOnAndroid` - Improve logging messages
…odChannel` outside of Platform class.
…and make `methodChannel` internal to `platform.dart`
d7f649b
to
74a1dad
Compare
…xception (as original code)
…ckgroundFlutterApplicationReadyOnAndroid' into enhancement/platform-encapsulation # Conflicts: # android/src/main/java/io/ably/flutter/plugin/BackgroundMethodCallHandler.java # lib/src/platform/src/push_notification_events_native.dart
…ckgroundFlutterApplicationReadyOnAndroid' into enhancement/platform-encapsulation # Conflicts: # lib/src/platform/src/push_notification_events_native.dart
lukasz-szyszkowski
approved these changes
Nov 19, 2021
…ckgroundFlutterApplicationReadyOnAndroid' into enhancement/platform-encapsulation # Conflicts: # lib/src/platform/src/platform.dart
ikbalkaya
approved these changes
Nov 26, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me 😎 Thanks for addressing this
Base automatically changed from
enhancement/rename-pushSetOnBackgroundMessage-to-pushBackgroundFlutterApplicationReadyOnAndroid
to
main
November 26, 2021 13:45
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@ikbalkaya started a conversation about the generous use of statics in
platform.dart
. #219 (comment)This PR makes
Platform
a singleton instead of having every method and field a static one, and removes direct usages ofPlatform.methodChannel
andPlatform.streamsChannel
outside of Platform class (encapsulation).It also removes any complexity which was added to handle hot restart issues. This was entirely due to using static methods. Now that we have a constructor in
Platform.dart
, hot restarts works for free: the constructor is called at launch and whenever hot restart occurs. I owe this discovery to @ikbalkaya, thanks 👍 . Keep asking good (and difficult) questions 😃Also includes small log line improvements which I noticed could be improved
Note about testing
I added optional arguments to the. Platform singleton for tests to override the method channel. This allows them to configure method channel (call
setMockMethodCallHandler
) without manually accessing the internal state of Platform after it is instantiated.Quintin's concern
Hot reload and restart are not tricky in themselves. The complexity in the code arose from a misunderstanding of Flutter, and a misuse of static.
resetAblyClients
.