Skip to content

Support for multiple servers for VoiceClient #569

Open
@Tr00d

Description

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);

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions