33 - (instancetype)init:(NSArray*)arguments {
35 self = [
super init:arguments withExecuteCallback:nil withLogCallback:nil withLogRedirectionStrategy:LogRedirectionStrategyNeverPrintLogs];
40 - (instancetype)init:(NSArray*)arguments withExecuteCallback:(
ExecuteCallback)executeCallback {
42 self = [
super init:arguments withExecuteCallback:executeCallback withLogCallback:nil withLogRedirectionStrategy:LogRedirectionStrategyNeverPrintLogs];
47 - (instancetype)init:(NSArray*)arguments withExecuteCallback:(
ExecuteCallback)executeCallback withLogCallback:(
LogCallback)logCallback {
49 self = [
super init:arguments withExecuteCallback:executeCallback withLogCallback:logCallback withLogRedirectionStrategy:LogRedirectionStrategyNeverPrintLogs];
55 return _mediaInformation;
59 _mediaInformation = mediaInformation;
void(^ ExecuteCallback)(id< Session > session)
void(^ LogCallback)(Log *log)