예제 #1
0
파일: Context.cs 프로젝트: kersny/manos
        public override IPrepareWatcher CreatePrepareWatcher(Action cb)
        {
            var result = new PrepareWatcher(this, cb);

            prepares.Add(result);
            return(result);
        }
예제 #2
0
파일: Context.cs 프로젝트: kersny/manos
 internal void Remove(PrepareWatcher prepare)
 {
     prepares.Remove(prepare);
 }