Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • video from the camera of this participant - the lower one
  • videos from the other participants

Image Added

Analyzing the code of the example

...

Server REST app response handler function is passed to the metodmethod.

Code Block
languagecpp
themeRDark
if ([button.titleLabel.text isEqualToString:@"LEAVE"]) {
    if (room) {
        FPWCSApi2DataHandler *handler = [[FPWCSApi2DataHandler alloc] init];
        handler.onAccepted = ^(FPWCSApi2Session *session, FPWCSApi2Data *data){
            [self onUnpublished];
            [self onLeaved];
        };
        handler.onRejected = ^(FPWCSApi2Session *session, FPWCSApi2Data *data){
            [self onUnpublished];
            [self onLeaved];
        };
        [room leave:handler];
        room = nil;
    }
}

...