示例#1
0
 public WaitForApplyBehavior(int sleepCount, WaitForApplyBehaviorDelegate waitForApplyBehaviorDelegate)
 {
     this.sleepCount = sleepCount;
     this.waitForApplyBehaviorDelegate = waitForApplyBehaviorDelegate;
 }
示例#2
0
 public static IBytecodeBehavior Create(IServiceContext beanContext, WaitForApplyBehaviorDelegate waitForApplyBehaviorDelegate)
 {
     return(beanContext.RegisterWithLifecycle(new WaitForApplyBehavior(waitForApplyBehaviorDelegate)).Finish());
 }
示例#3
0
 public WaitForApplyBehavior(WaitForApplyBehaviorDelegate waitForApplyBehaviorDelegate) : this(1, waitForApplyBehaviorDelegate)
 {
     // intended blank
 }