...
When using Gumband you should only ever call new Gumband(...)
once. This is because only one SDK should is allowed connect to a Gumband Exhibit in the cloud at a time. Creating multiple new Gumband()
calls will violate this behavior invariant and result in a message like the one below.
...
The Solution
If you are feeling like you need to call new Gumband()
more than once in your code you can prevent this error by using a singleton wrapping class.
...