-
Notifications
You must be signed in to change notification settings - Fork 5
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
[ANDR][Replay] Flatten and de-spaghettize Session Replay logic #118
Conversation
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.
nice
import java.util.concurrent.TimeUnit | ||
|
||
/** | ||
* Allows to capture the screen and send the binary data over a persistent websocket connection | ||
* @param replayModule The replay module to use for screen capture | ||
* @param replayManager The replay module to use for screen capture |
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.
this seems off (there are missing docs for other arguments as well)
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.
yeah i noticed the entire replay module is whack and docs are not enforced. i'll look into fixing all that in a separate pr
In preparation for adding screenshotting capabilities.
Classes in the replay module were over-abstracted and all their dependencies were leaking so we're refactoring it all to flatten and simplify their structures and make their dependancies be enforced at construction time.