-
Notifications
You must be signed in to change notification settings - Fork 80
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
Adds InputTableService support for blink tables #4934
Conversation
This adds `TablePublisher#inputTable`, which adds a very simple InputTableUpdater implementation to the blink table. Also, some further simplifications in the spirit of deephaven#4923: `InputTableUpdater#getDescription`, `InputTableUpdater#getTable`, and `InputTableUpdater#canEdit` were removed to due no usages. Fixes deephaven#4915
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.
Python looks fine.
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.
We want to update InputTableUpdater.add
to explain that the semantics of "added" are implementation defined.
Also, updates InputTableService to use async methods.
server/src/main/java/io/deephaven/server/table/inputtables/InputTableServiceGrpcImpl.java
Show resolved
Hide resolved
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 adds
TablePublisher#inputTable
, which adds a very simpleInputTableUpdater
implementation to the blink table.Also, some further simplifications in the spirit of #4923:
InputTableUpdater#getDescription
,InputTableUpdater#getTable
, andInputTableUpdater#canEdit
were removed due to no usages.Fixes #4915