laatzen/Common/Hardware/Common.Hardware.SIRT/Tasks/DeleteFromPamPoolTask.cs

17 lines
413 B
C#
Raw Normal View History

2025-03-26 11:53:29 +00:00
namespace Common.Hardware.SIRT.Tasks
{
using Common.Hardware.SIRT.Parameters;
public class DeleteFromPamPoolTask : SIRTTask
{
public DeleteFromPamPoolTask()
{
this.request.Command = SIRTConstants.W_PAM;
this.request.P1 = new P811 { DelPamAdr = true };
}
public override void Push(SIRTMessage _)
2025-04-29 09:24:33 +00:00
=> this.SetCompleted();
2025-03-26 11:53:29 +00:00
}
}