|
@@ -18,7 +18,7 @@ namespace Aitex.Core.WCF
|
|
|
public event Action<EventItem> OnEvent;
|
|
|
public event Action OnDisconnectedWithRT;
|
|
|
public event Action<bool> LockAndUnlockEvent;
|
|
|
- public event Func<IEnumerable<string>,bool?> OnUpdateWaferEvent;
|
|
|
+ public event Action<IEnumerable<string>> OnUpdateWaferEvent;
|
|
|
public bool InProcess { get; set; }
|
|
|
|
|
|
private IEventService _service;
|
|
@@ -53,7 +53,7 @@ namespace Aitex.Core.WCF
|
|
|
LockAndUnlockEvent(obj);
|
|
|
}
|
|
|
}
|
|
|
- private bool? _sevice_OnUpdateWaferEvent(IEnumerable<string> modules)=> OnUpdateWaferEvent?.Invoke(modules);
|
|
|
+ private void _sevice_OnUpdateWaferEvent(IEnumerable<string> modules)=> OnUpdateWaferEvent?.Invoke(modules);
|
|
|
|
|
|
|
|
|
public bool IsConnectedWithRT
|
|
@@ -174,7 +174,7 @@ namespace Aitex.Core.WCF
|
|
|
|
|
|
public event Action<bool> OnLockAndUnlockEvent;
|
|
|
|
|
|
- public event Func<IEnumerable<string>,bool?> OnUpdateWaferEvent;
|
|
|
+ public event Action<IEnumerable<string>> OnUpdateWaferEvent;
|
|
|
|
|
|
public EventServiceClient(EventServiceCallback callbackInstance)
|
|
|
: base(new InstanceContext(callbackInstance), "Client_IEventService", "EventService")
|
|
@@ -200,7 +200,7 @@ namespace Aitex.Core.WCF
|
|
|
OnLockAndUnlockEvent(isLock);
|
|
|
}
|
|
|
}
|
|
|
- bool? CallbackInstance_OnUpdateWaferEvent(IEnumerable<string> modules) => OnUpdateWaferEvent?.Invoke(modules);
|
|
|
+ void CallbackInstance_OnUpdateWaferEvent(IEnumerable<string> modules) => OnUpdateWaferEvent?.Invoke(modules);
|
|
|
|
|
|
public bool Register(Guid id)
|
|
|
{
|