-
Notifications
You must be signed in to change notification settings - Fork 451
Implement send_table
in re_grpc_server
and re_viewer
#9510
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
Conversation
Web viewer built successfully. If applicable, you should also test it:
Note: This comment is updated whenever you push a commit. |
aacec47
to
95f6c7c
Compare
re_grpc_server
re_grpc_server
and re_viewer
preparation for send_table
@@ -171,6 +171,8 @@ struct PendingFilePromise { | |||
promise: poll_promise::Promise<Vec<re_data_source::FileContents>>, | |||
} | |||
|
|||
type ReceiveSetTable = parking_lot::Mutex<Vec<crossbeam::channel::Receiver<TableMsg>>>; |
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.
ReceiveSetTable
reads weird to me
type ReceiveSetTable = parking_lot::Mutex<Vec<crossbeam::channel::Receiver<TableMsg>>>; | |
type TableReceiverSet = parking_lot::Mutex<Vec<crossbeam::channel::Receiver<TableMsg>>>; |
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 named it this way to make it somewhat symmetric with ReceiveSet<LogMsg>
.
re_grpc_server
and re_viewer
preparation for send_table
send_table
in re_grpc_server
and re_viewer
And actually do that.
Co-authored-by: Emil Ernerfeldt <[email protected]>
Related
ViewerClient::send_table
method to SDK #9456What
The server-side and viewer logic for
send_table
. Also contains, the required changes for the notebook.