-
Notifications
You must be signed in to change notification settings - Fork 82
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
tsp, design discussion, client hierarchy #2428
Comments
petStoreClientBuilder.buildPets()
petStoreClientBuilder.buildPetsActions() |
petStoreClientBuilder.buildPets()
petStoreClientBuilder.<other-configures>.pets().buildActions() |
Scenario for Face AI (with client parameter)
|
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Known namespace/interface patterns (assume namespace/interface always contains some operations)
All of these patterns can exist in a single tsp file. Plan to use an emitter option (e.g. |
This is only part of the support for Azure/autorest.java#2428 cadl-ranch Azure/cadl-ranch#727 user code ```java InitializationClient client = new InitializationClientBuilder() .name("client1") .buildClient(); client.action(); ```
This is only part of the support for Azure/autorest.java#2428 cadl-ranch Azure/cadl-ranch#727 user code ```java InitializationClient client = new InitializationClientBuilder() .name("client1") .buildClient(); client.action(); ```
see https://github.com/Azure/typespec-azure-pr/issues/3809#discussion_r1405948920
Should Java support nested client?
E.g.
petStoreClient.getPets().getActions().feed()
The text was updated successfully, but these errors were encountered: