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.
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
refactor: Specify common types TDE-1030 #849
refactor: Specify common types TDE-1030 #849
Changes from 32 commits
25f890c
243ceeb
a119ba7
907f18a
8f8c146
8d716c3
3fe4a21
9ca2b9e
aeeb40a
48f5b2d
cf7aad3
ab8603d
73e08c1
e0f9241
a5aa796
f341b8f
f4f916d
67a8bc0
1eeb1cc
804b355
86cfa0d
40581de
2cd22d5
c6dc92b
fa98b63
1f36e73
3b5eb17
dcd9868
f09b7d3
5306cc8
273235e
cc9ddb1
87c913f
894218c
1a26e94
767edc0
fc92748
ffd1d02
8191600
79737fc
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Large diffs are not rendered by default.
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.
can worker threads actually pass URLS? I thought everything was meant to be a POJO for passing around?
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.
I assume you mean either JSON or JS object, not "Plain old Java object". I have no idea how
WorkerRpc
works; I guess since you ask we don't have tests for this message passing?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.
worker_threads
are a mechanisim of using small scripts to add more threads to do processing, they are limited to posting messages to/from the thread using a rpc type mechanisim,WorkerRpc
wraps the posting so it is somewhat typesafe.I am not sure we can pass a URL between threads as its not really a easily searliazable thing, just like you cant pass a date but you can pass a ISO string.