Replies: 1 comment 7 replies
-
|
I don’t have any recommendations other than creating your own application level objects containing only the NodeId and StatusCode constants you need/use, but I can look at changing the visibility on the inherited classes as well. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
We're using milo in a Scala 2.12.19 environment. We're upgrading from stack-core, sdk-client 0.6.8 to milo-stack-core, milo-sdk-client 1.1.0 and have encountered a problem with the classes
NodeIdsandStatusCodes.In Scala, accessing inherited static members of parent classes like
NodeIds0, NodeIds1, ...is not possible. This is a feature as described here.Generally, the workaround seems to be to import the parent classes, but
NodeIds0, ...are package-private and thus not accessible.Is there a recommended way around this problem in milo for Scala developers?
Beta Was this translation helpful? Give feedback.
All reactions