一个协议(或接口),用于接收 GlobalProps 的更新。
@protocol GlobalPropsUpdatedObserver <NSObject> - (void)onGlobalPropsUpdated:(NSDictionary *)props; @end
public interface GlobalPropsObserver { void onGlobalPropsUpdated(Map globalProps); }