Skip to content
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

Support for multiple servers for VoiceClient #569

Open
Tr00d opened this issue Jan 31, 2024 · 0 comments
Open

Support for multiple servers for VoiceClient #569

Tr00d opened this issue Jan 31, 2024 · 0 comments
Labels

Comments

@Tr00d
Copy link
Contributor

Tr00d commented Jan 31, 2024

In certain scenarios, clients want to connect to multiple servers (EU, US, APAC) from the same application.
Currently, the request is sent to a single URL, NexmoApiUrl.

Implementation - TBC

We could use a fluent approach to specify a particular server before doing a request.

VoiceClient client = new VoiceClient(...);
VoiceClient usClient = client.WithServer(VoiceServer.US);
VoiceClient euClient = client.WithServer(VoiceServer.EU);
VoiceClient apacClient = client.WithServer(VoiceServer.APAC);
@Tr00d Tr00d added the feature label Jan 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant