Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ConnectionRecoveredEvent.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Event/Abstract/LocalEvent.h"
7
8#include "ConnectionRecoveredEvent.generated.h"
9
15USTRUCT()
17{
18 GENERATED_BODY()
19
20 explicit FConnectionRecoveredEvent() : FLocalEvent{StaticType()}
21 {
22 ;
23 };
24
25 static FName StaticType()
26 {
27 static const FName Type{TEXT("connection.recovered")};
28 return Type;
29 }
30};
@ Type
Type of the message.
Sent when the connection is recovered.
Definition: ConnectionRecoveredEvent.h:17
Event not originating from the API.
Definition: LocalEvent.h:15