Ejemplo n.º 1
0
 public DownloadWorldContentInitializable([NotNull] IDownloadableContentServerServiceClient contentService,
                                          [NotNull] WorldConfiguration worldConfig,
                                          [NotNull] ILog logger)
 {
     ContentService = contentService ?? throw new ArgumentNullException(nameof(contentService));
     WorldConfig    = worldConfig ?? throw new ArgumentNullException(nameof(worldConfig));
     Logger         = logger ?? throw new ArgumentNullException(nameof(logger));
 }
Ejemplo n.º 2
0
 public PreBurstQueryDownloadableSceneInitializable(ICharacterSessionDataChangedEventSubscribable subscriptionService,
                                                    [NotNull] ILog logger,
                                                    [NotNull] IDownloadableContentServerServiceClient contentService,
                                                    [NotNull] IZoneDataService zoneDataService)
     : base(subscriptionService)
 {
     Logger          = logger ?? throw new ArgumentNullException(nameof(logger));
     ContentService  = contentService ?? throw new ArgumentNullException(nameof(contentService));
     ZoneDataService = zoneDataService ?? throw new ArgumentNullException(nameof(zoneDataService));
 }
Ejemplo n.º 3
0
 public NetworkAvatarContentResourceManager([NotNull] IDownloadableContentServerServiceClient contentClient, ILog logger)
     : base(logger, UserContentType.Avatar)
 {
     ContentClient = contentClient ?? throw new ArgumentNullException(nameof(contentClient));
 }
Ejemplo n.º 4
0
 public UpdatedContentUploadTokenFactory([NotNull] IDownloadableContentServerServiceClient contentClient, [NotNull] IUploadedContentDataDefinition contentDataDefinition)
 {
     ContentClient         = contentClient ?? throw new ArgumentNullException(nameof(contentClient));
     ContentDataDefinition = contentDataDefinition ?? throw new ArgumentNullException(nameof(contentDataDefinition));
 }
Ejemplo n.º 5
0
 public NewContentUploadTokenFactory([NotNull] IDownloadableContentServerServiceClient contentClient)
 {
     ContentClient = contentClient ?? throw new ArgumentNullException(nameof(contentClient));
 }