12 lines
No EOL
296 B
C#
12 lines
No EOL
296 B
C#
namespace StitchATon2.Infra.Synchronization;
|
|
|
|
public static class TaskHelper
|
|
{
|
|
public static TaskFactory CreateTaskFactory()
|
|
{
|
|
return new TaskFactory(
|
|
TaskCreationOptions.AttachedToParent,
|
|
TaskContinuationOptions.ExecuteSynchronously
|
|
);
|
|
}
|
|
} |