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
|
|
|
|
}
|
|
|
|
|
|
}
|