Merge remote-tracking branch 'origin/release/10_8_0' into feature/fastlane_launch_app_build_customization
This commit is contained in:
commit
d86462427a
@ -19,3 +19,9 @@ public extension ActionDelegateProtocol {
|
|||||||
try await MVMCoreActionHandler.shared()?.handleAction(with: model, additionalData: additionalData, delegateObject: delegateObject)
|
try await MVMCoreActionHandler.shared()?.handleAction(with: model, additionalData: additionalData, delegateObject: delegateObject)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public extension MVMCoreActionDelegateProtocol {
|
||||||
|
func action(with model: ActionModelProtocol, additionalData: [AnyHashable : Any]?, delegateObject: DelegateObject?) async throws {
|
||||||
|
try await (self as? ActionDelegateProtocol)?.performAction(with: model, additionalData: additionalData, delegateObject: delegateObject)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -25,9 +25,7 @@
|
|||||||
self.session = [[MVMCoreSessionObject alloc] init];
|
self.session = [[MVMCoreSessionObject alloc] init];
|
||||||
self.cache = [[MVMCoreCache alloc] init];
|
self.cache = [[MVMCoreCache alloc] init];
|
||||||
self.viewControllerMapping = [[MVMCoreViewControllerMappingObject alloc] init];
|
self.viewControllerMapping = [[MVMCoreViewControllerMappingObject alloc] init];
|
||||||
[MVMCoreDispatchUtility performSyncBlockOnMainThread:^{
|
self.sessionHandler = [[MVMCoreSessionTimeHandler alloc] init];
|
||||||
self.sessionHandler = [[MVMCoreSessionTimeHandler alloc] init];
|
|
||||||
}];
|
|
||||||
self.actionHandler = [[MVMCoreActionHandler alloc] init];
|
self.actionHandler = [[MVMCoreActionHandler alloc] init];
|
||||||
self.loggingDelegate = [[MVMCoreLoggingHandler alloc] init];
|
self.loggingDelegate = [[MVMCoreLoggingHandler alloc] init];
|
||||||
self.loadHandler = [[MVMCoreLoadHandler alloc] init];
|
self.loadHandler = [[MVMCoreLoadHandler alloc] init];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user