You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix potential race condition on multicast delegate used from multiple threads
#rb Martin.Ridgers, Ionut.Matasaru #preflight 6346a435fa31324bb133affb [CL 22481908 by danny couture in ue5-main branch]
This commit is contained in:
@@ -43,17 +43,17 @@ public:
|
||||
/**
|
||||
* Callback type when a new connection is established.
|
||||
*/
|
||||
DECLARE_MULTICAST_DELEGATE(FOnConnection);
|
||||
DECLARE_TS_MULTICAST_DELEGATE(FOnConnection);
|
||||
|
||||
/** Callback whenever a trace is started */
|
||||
DECLARE_MULTICAST_DELEGATE_TwoParams(FOnTraceStarted, FTraceAuxiliary::EConnectionType TraceType, const FString& TraceDestination);
|
||||
DECLARE_TS_MULTICAST_DELEGATE_TwoParams(FOnTraceStarted, FTraceAuxiliary::EConnectionType TraceType, const FString& TraceDestination);
|
||||
|
||||
/**
|
||||
* Callback whenever a trace recording is stopped.
|
||||
* TraceType tells what kind of trace it is.
|
||||
* TraceDestination will be either the the filename and path for a file trace or the network connection for a network trace
|
||||
*/
|
||||
DECLARE_MULTICAST_DELEGATE_TwoParams(FOnTraceStopped, FTraceAuxiliary::EConnectionType TraceType, const FString& TraceDestination);
|
||||
DECLARE_TS_MULTICAST_DELEGATE_TwoParams(FOnTraceStopped, FTraceAuxiliary::EConnectionType TraceType, const FString& TraceDestination);
|
||||
|
||||
struct FOptions
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user