Package com.sinch.android.rtc
Interface ClientRegistration
-
- All Implemented Interfaces:
public interface ClientRegistrationCallback object to be used to proceed in user registration flow when registration credentials for the user in question have been obtained.
To understand how JWT tokens work and how to generate one see application-authentication section of the online docs.
-
-
Method Summary
Modifier and Type Method Description abstract Unitregister(String jwtSignature)Method to call when registration credentials for the user have been obtained. abstract UnitregisterFailed()Method to call if registration credentials could not be obtained. -
-
Method Detail
-
register
abstract Unit register(String jwtSignature)
Method to call when registration credentials for the user have been obtained.
- Parameters:
jwtSignature- Signed JWT token for this app's instance.
-
registerFailed
abstract Unit registerFailed()
Method to call if registration credentials could not be obtained.
-
-
-
-