Inherits CallState.
The call is ready to use.
Public Fields | |
object_ptr< callProtocol > | protocol_ |
Call protocols supported by the other call participant. | |
array< object_ptr< callServer > > | servers_ |
List of available call servers. | |
string | config_ |
A JSON-encoded call config. | |
bytes | encryption_key_ |
Call encryption key. | |
array< string > | emojis_ |
Encryption key fingerprint represented as 4 emoji. | |
bool | allow_p2p_ |
True, if peer-to-peer connection is allowed by users privacy settings. | |
string | custom_parameters_ |
Custom JSON-encoded call parameters to be passed to tgcalls. | |
Public Instance Methods | |
callStateReady () | |
callStateReady (object_ptr< callProtocol > &&protocol_, array< object_ptr< callServer >> &&servers_, string const &config_, bytes const &encryption_key_, array< string > &&emojis_, bool allow_p2p_, string const &custom_parameters_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 731619651 |
Identifier uniquely determining a type of the object. | |
callStateReady | ( | ) |
The call is ready to use.
callStateReady | ( | object_ptr< callProtocol > && | protocol_, |
array< object_ptr< callServer >> && | servers_, | ||
string const & | config_, | ||
bytes const & | encryption_key_, | ||
array< string > && | emojis_, | ||
bool | allow_p2p_, | ||
string const & | custom_parameters_ | ||
) |
The call is ready to use.
[in] | protocol_ | Call protocols supported by the other call participant. |
[in] | servers_ | List of available call servers. |
[in] | config_ | A JSON-encoded call config. |
[in] | encryption_key_ | Call encryption key. |
[in] | emojis_ | Encryption key fingerprint represented as 4 emoji. |
[in] | allow_p2p_ | True, if peer-to-peer connection is allowed by users privacy settings. |
[in] | custom_parameters_ | Custom JSON-encoded call parameters to be passed to tgcalls. |
|
finalvirtual |