Example #1
0
 public HandlerWrapper(IVerifyAndClosable inner, Action <bool> close)
 {
     _close = close;
     _inner = inner;
 }
Example #2
0
        async Task <IPact> IResponseBuilder.InPact()
        {
            _handler = await Context.RegisterListener(this, _configuration);

            return(this);
        }