[RN] Fix documentation
This commit is contained in:
parent
284e4e543e
commit
e830b80b6b
|
@ -215,35 +215,35 @@ boilerplate.
|
||||||
Called when a joining a conference was unsuccessful or when there was an error
|
Called when a joining a conference was unsuccessful or when there was an error
|
||||||
while in a conference.
|
while in a conference.
|
||||||
|
|
||||||
The `data` HashMap contains an "error" key describing the error and a "url"
|
The `data` `Map` contains an "error" key describing the error and a "url" key
|
||||||
key with the conference URL.
|
with the conference URL.
|
||||||
|
|
||||||
#### onConferenceJoined
|
#### onConferenceJoined
|
||||||
|
|
||||||
Called when a conference was joined.
|
Called when a conference was joined.
|
||||||
|
|
||||||
The `data` HashMap contains a "url" key with the conference URL.
|
The `data` `Map` contains a "url" key with the conference URL.
|
||||||
|
|
||||||
#### onConferenceLeft
|
#### onConferenceLeft
|
||||||
|
|
||||||
Called when a conference was left.
|
Called when a conference was left.
|
||||||
|
|
||||||
The `data` HashMap contains a "url" key with the conference URL.
|
The `data` `Map` contains a "url" key with the conference URL.
|
||||||
|
|
||||||
#### onConferenceWillJoin
|
#### onConferenceWillJoin
|
||||||
|
|
||||||
Called before a conference is joined.
|
Called before a conference is joined.
|
||||||
|
|
||||||
The `data` HashMap contains a "url" key with the conference URL.
|
The `data` `Map` contains a "url" key with the conference URL.
|
||||||
|
|
||||||
#### onConferenceWillLeave
|
#### onConferenceWillLeave
|
||||||
|
|
||||||
Called before a conference is left.
|
Called before a conference is left.
|
||||||
|
|
||||||
The `data` HashMap contains a "url" key with the conference URL.
|
The `data` `Map` contains a "url" key with the conference URL.
|
||||||
|
|
||||||
#### onLoadConfigError
|
#### onLoadConfigError
|
||||||
|
|
||||||
Called when loading the main configuration fails.
|
Called when loading the main configuration fails.
|
||||||
|
|
||||||
The `data` HashMap contains a "error" key with the error.
|
The `data` `Map` contains an "error" key with the error.
|
||||||
|
|
|
@ -62,7 +62,7 @@ public interface JitsiMeetViewListener {
|
||||||
/**
|
/**
|
||||||
* Called when loading the main configuration fails.
|
* Called when loading the main configuration fails.
|
||||||
*
|
*
|
||||||
* @param data - Map with a "error" key with the error.
|
* @param data - Map with an "error" key with the error.
|
||||||
*/
|
*/
|
||||||
void onLoadConfigError(Map<String, Object> data);
|
void onLoadConfigError(Map<String, Object> data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -155,4 +155,4 @@ The `data` dictionary contains a "url" key with the conference URL.
|
||||||
|
|
||||||
Called when loading the main configuration fails.
|
Called when loading the main configuration fails.
|
||||||
|
|
||||||
The `data` dictionary contains a "error" key with the error.
|
The `data` dictionary contains an "error" key with the error.
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
/**
|
/**
|
||||||
* Called when loading the main configuration file fails.
|
* Called when loading the main configuration file fails.
|
||||||
*
|
*
|
||||||
* The {@code data} dictionary contains a {@code error} key with the error.
|
* The {@code data} dictionary contains an {@code error} key with the error.
|
||||||
*/
|
*/
|
||||||
- (void) loadConfigError:(NSDictionary *)data;
|
- (void) loadConfigError:(NSDictionary *)data;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue