-
Notifications
You must be signed in to change notification settings - Fork 32
feat(event processor): Add LogEvent notification support #263
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
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f11dba6
fix existing tests for ep batch changes (wip)
jaeopt 811aca4
fix errors for concurrent event-batch tests
jaeopt f3fe976
cleanup
jaeopt 8fd9a1d
add tests for non-time flush cases
jaeopt a2659f1
fix tests for non-time flush cases
jaeopt 8354ae1
fix batch as much as possible when non-batch found in queue
jaeopt c856b88
flush on batchSize hit
jaeopt 3e24dd8
cleanup
jaeopt 4f672af
fix event flushes for non-timer
jaeopt 68c7732
refactor chagne observer
jaeopt 995aef5
add support for maxQueueSize - configurable
jaeopt f9db90f
clean up batch on error
jaeopt 78dd3a8
(wip) add log_event notif
jaeopt 1021126
add test for dispatchEvent callbacks
jaeopt e36ef26
fix test event files to random
jaeopt 7e32722
fix conflicts
jaeopt 0ad4ae1
add test for LOG_EVENT notification
jaeopt 31cc809
add LogEvent notification to event processor
jaeopt 1ae1a3c
cleanup
jaeopt f379480
fix eventDispatcher configuration for objective-c
jaeopt bf52c56
fix test for objective-c event dispatcher configuration
jaeopt c383df8
fix conflicts
jaeopt d342c69
cleanup demo app code
jaeopt 5c12109
switch unit test order to workaround coverall false reports
jaeopt 753642f
exclude some event-batch tests from OS9
jaeopt 6e65ecf
merge master
jaeopt eb4c184
turn off coverage from tv tests (coverall not adding up)
jaeopt b428452
cleanup
jaeopt a09d51a
Merge branch 'master' into jae/epNotif
jaeopt ebb3aab
Merge branch 'master' into jae/epNotif
thomaszurkan-optimizely File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
codeCoverageEnabled = "YES" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this in this PR? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was a part of fixing coverage failure for this PR. I'll try to split into separate one next time :) |
||
shouldUseLaunchSchemeArgsEnv = "YES"> | ||
<Testables> | ||
<TestableReference | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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.
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.
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.
Shouldn't this be in another PR?