-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathIServiceHub.cs
More file actions
63 lines (51 loc) · 2.69 KB
/
IServiceHub.cs
File metadata and controls
63 lines (51 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using Parse.Abstractions.Infrastructure.Data;
using Parse.Abstractions.Infrastructure.Execution;
using Parse.Abstractions.Platform.Analytics;
using Parse.Abstractions.Platform.Cloud;
using Parse.Abstractions.Platform.Configuration;
using Parse.Abstractions.Platform.Files;
using Parse.Abstractions.Platform.Installations;
using Parse.Abstractions.Platform.LiveQueries;
using Parse.Abstractions.Platform.Objects;
using Parse.Abstractions.Platform.Push;
using Parse.Abstractions.Platform.Queries;
using Parse.Abstractions.Platform.Sessions;
using Parse.Abstractions.Platform.Users;
namespace Parse.Abstractions.Infrastructure;
// TODO: Consider splitting up IServiceHub into IResourceHub and IServiceHub, where the former would provide the current functionality of IServiceHub and the latter would be a public-facing sub-section containing formerly-static memebers from classes such as ParseObject which require the use of some broader resource.
/// <summary>
/// The dependency injection container for all internal .NET Parse SDK services.
/// </summary>
public interface IServiceHub
{
/// <summary>
/// The current server connection data that the Parse SDK has been initialized with.
/// </summary>
IServerConnectionData ServerConnectionData { get; }
ILiveQueryServerConnectionData LiveQueryServerConnectionData { get; }
IMetadataController MetadataController { get; }
IServiceHubCloner Cloner { get; }
IWebClient WebClient { get; }
ICacheController CacheController { get; }
IParseObjectClassController ClassController { get; }
IParseDataDecoder Decoder { get; }
IParseInstallationController InstallationController { get; }
IParseCommandRunner CommandRunner { get; }
IWebSocketClient WebSocketClient { get; }
IParseCloudCodeController CloudCodeController { get; }
IParseConfigurationController ConfigurationController { get; }
IParseFileController FileController { get; }
IParseObjectController ObjectController { get; }
IParseQueryController QueryController { get; }
IParseLiveQueryController LiveQueryController { get; }
IParseSessionController SessionController { get; }
IParseUserController UserController { get; }
IParseCurrentUserController CurrentUserController { get; }
IParseAnalyticsController AnalyticsController { get; }
IParseInstallationCoder InstallationCoder { get; }
IParsePushChannelsController PushChannelsController { get; }
IParsePushController PushController { get; }
IParseCurrentInstallationController CurrentInstallationController { get; }
IParseInstallationDataFinalizer InstallationDataFinalizer { get; }
}