We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature Description Add ChannelType Enum values for gRPC Channel implementations as follows:
class ChannelType(Enum): """ The ChannelType Enum specifies which Channel implementation is to be used for an Arkouda client deployment. """ ZMQ = 'ZMQ' GRPC = 'GRPC' ASYNC_GRPC = 'ASYNC_GRPC' STREAMING_GRPC = 'STREAMING_GRPC' def __str__(self) -> str: """ Overridden method returns value. """ return self.value def __repr__(self) -> str: """ Overridden method returns value. """ return self.value
The text was updated successfully, but these errors were encountered:
added ChannelType values for arkouda gRPC proxy server Channel implem…
0a62bae
…entations Bears-R-Us#2746
cd60b33
…entations #2746 (#2747)
hokiegeek2
Successfully merging a pull request may close this issue.
Feature Description
Add ChannelType Enum values for gRPC Channel implementations as follows:
The text was updated successfully, but these errors were encountered: