Not working
This commit is contained in:
@@ -43,13 +43,13 @@ public partial class NamedPipesServer(string pipeName,Action<string>? logger = n
|
||||
}
|
||||
}
|
||||
[ObservableProperty]
|
||||
public partial DebugObject? DebugObject { get; private set; }
|
||||
public partial VisualizerModel? VisualizerModel { get; private set; }
|
||||
|
||||
public async Task<bool> SetDebugObjectAsync(DebugObject debugObject)
|
||||
public async Task<bool> SetVisualizerModelAsync(VisualizerModel visualizerModel)
|
||||
{
|
||||
await Task.Delay(1);
|
||||
DebugObject = debugObject;
|
||||
Logger("Received DebugObject of type: " + DebugObject.Type);
|
||||
VisualizerModel = visualizerModel;
|
||||
Logger("NamedPipesServer, received object of type: " + visualizerModel.GetType());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user