K2Informatics.Erlnet.OtpActor.GetEnumerator C# (CSharp) 메소드

GetEnumerator() 공개 추상적인 메소드

public abstract GetEnumerator ( ) : IEnumerator
리턴 IEnumerator
        public abstract IEnumerator<Continuation> GetEnumerator();

Usage Example

예제 #1
0
 public OtpActorSchedTask(OtpActor actor)
 {
     actor.Task = this;
     this.actor = actor;
     this.enumerator = actor.GetEnumerator();
 }