AIMA.Core.Logic.FOL.Domain.FOLDomainEvent.notifyListener C# (CSharp) Method

notifyListener() public abstract method

public abstract notifyListener ( FOLDomainListener listener ) : void
listener FOLDomainListener
return void
        public abstract void notifyListener(FOLDomainListener listener);
    }

Usage Example

Beispiel #1
0
 //
 // PRIVATE METHODS
 //
 private void notifyFOLDomainListeners(FOLDomainEvent evt)
 {
     lock (listeners)
     {
         foreach (FOLDomainListener l in listeners)
         {
             evt.notifyListener(l);
         }
     }
 }
All Usage Examples Of AIMA.Core.Logic.FOL.Domain.FOLDomainEvent::notifyListener