-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathIMutableServiceHub.cs
More file actions
55 lines (44 loc) · 2.15 KB
/
IMutableServiceHub.cs
File metadata and controls
55 lines (44 loc) · 2.15 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
#pragma warning disable CS0108 // Member hides inherited member; missing new keyword
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;
public interface IMutableServiceHub : IServiceHub
{
IServerConnectionData ServerConnectionData { set; }
IServerConnectionData LiveQueryServerConnectionData { set; }
IMetadataController MetadataController { set; }
IServiceHubCloner Cloner { set; }
IWebClient WebClient { set; }
ICacheController CacheController { set; }
IParseObjectClassController ClassController { set; }
IParseDataDecoder Decoder { set; }
IParseInstallationController InstallationController { set; }
IParseCommandRunner CommandRunner { set; }
IWebSocketClient WebSocketClient { set; }
IParseCloudCodeController CloudCodeController { set; }
IParseConfigurationController ConfigurationController { set; }
IParseFileController FileController { set; }
IParseObjectController ObjectController { set; }
IParseQueryController QueryController { set; }
IParseLiveQueryController LiveQueryController { set; }
IParseSessionController SessionController { set; }
IParseUserController UserController { set; }
IParseCurrentUserController CurrentUserController { set; }
IParseAnalyticsController AnalyticsController { set; }
IParseInstallationCoder InstallationCoder { set; }
IParsePushChannelsController PushChannelsController { set; }
IParsePushController PushController { set; }
IParseCurrentInstallationController CurrentInstallationController { set; }
IParseInstallationDataFinalizer InstallationDataFinalizer { set; }
}