Initial
This commit is contained in:
62
MareAPI/MareSynchronosAPI/SignalR/IMareHubClient.cs
Normal file
62
MareAPI/MareSynchronosAPI/SignalR/IMareHubClient.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
using MareSynchronos.API.Data;
|
||||
using MareSynchronos.API.Data.Enum;
|
||||
using MareSynchronos.API.Dto;
|
||||
using MareSynchronos.API.Dto.CharaData;
|
||||
using MareSynchronos.API.Dto.Chat;
|
||||
using MareSynchronos.API.Dto.Group;
|
||||
using MareSynchronos.API.Dto.User;
|
||||
|
||||
namespace MareSynchronos.API.SignalR;
|
||||
|
||||
public interface IMareHubClient : IMareHub
|
||||
{
|
||||
void OnDownloadReady(Action<Guid> act);
|
||||
|
||||
void OnGroupChangePermissions(Action<GroupPermissionDto> act);
|
||||
|
||||
void OnGroupChatMsg(Action<GroupChatMsgDto> groupChatMsgDto);
|
||||
|
||||
void OnGroupDelete(Action<GroupDto> act);
|
||||
|
||||
void OnGroupPairChangePermissions(Action<GroupPairUserPermissionDto> act);
|
||||
|
||||
void OnGroupPairChangeUserInfo(Action<GroupPairUserInfoDto> act);
|
||||
|
||||
void OnGroupPairJoined(Action<GroupPairFullInfoDto> act);
|
||||
|
||||
void OnGroupPairLeft(Action<GroupPairDto> act);
|
||||
|
||||
void OnGroupSendFullInfo(Action<GroupFullInfoDto> act);
|
||||
|
||||
void OnGroupSendInfo(Action<GroupInfoDto> act);
|
||||
|
||||
void OnReceiveServerMessage(Action<MessageSeverity, string> act);
|
||||
|
||||
void OnUpdateSystemInfo(Action<SystemInfoDto> act);
|
||||
|
||||
void OnUserAddClientPair(Action<UserPairDto> act);
|
||||
|
||||
void OnUserChatMsg(Action<UserChatMsgDto> chatMsgDto);
|
||||
|
||||
void OnUserReceiveCharacterData(Action<OnlineUserCharaDataDto> act);
|
||||
|
||||
void OnUserReceiveUploadStatus(Action<UserDto> act);
|
||||
|
||||
void OnUserRemoveClientPair(Action<UserDto> act);
|
||||
|
||||
void OnUserSendOffline(Action<UserDto> act);
|
||||
|
||||
void OnUserSendOnline(Action<OnlineUserIdentDto> act);
|
||||
|
||||
void OnUserUpdateOtherPairPermissions(Action<UserPermissionsDto> act);
|
||||
|
||||
void OnUserUpdateProfile(Action<UserDto> act);
|
||||
|
||||
void OnUserUpdateSelfPairPermissions(Action<UserPermissionsDto> act);
|
||||
|
||||
void OnGposeLobbyJoin(Action<UserData> act);
|
||||
void OnGposeLobbyLeave(Action<UserData> act);
|
||||
void OnGposeLobbyPushCharacterData(Action<CharaDataDownloadDto> act);
|
||||
void OnGposeLobbyPushPoseData(Action<UserData, PoseData> act);
|
||||
void OnGposeLobbyPushWorldData(Action<UserData, WorldData> act);
|
||||
}
|
Reference in New Issue
Block a user