public HttpServerTransactionDelegate(
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory, 
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
Ejemplo n.º 3
0
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress           = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate         = requestDelegate;
 }
 public HttpServerTransactionDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
 }
Ejemplo n.º 5
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
Ejemplo n.º 6
0
 public static IServer CreateHttp(this IServerFactory factory, IHttpRequestDelegate channel, IScheduler scheduler)
 {
     var f = new HttpServerFactory(factory);
     return f.Create(channel, scheduler);
 }
Ejemplo n.º 7
0
        public static IServer CreateHttp(this IServerFactory factory, IHttpRequestDelegate channel, IScheduler scheduler)
        {
            var f = new HttpServerFactory(factory);

            return(f.Create(channel, scheduler));
        }
Ejemplo n.º 8
0
 public static IServer CreateHttp(this IServerFactory factory, IHttpRequestDelegate channel)
 {
     return CreateHttp(factory, channel, KayakScheduler.Current);
 }
Ejemplo n.º 9
0
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher=connWatcher;
 }
Ejemplo n.º 10
0
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher     = connWatcher;
 }
Ejemplo n.º 11
0
        public static IServer CreateIosHttp(this IServerFactory factory, IHttpRequestDelegate channel, IConnectionWatcher connWatcher, IScheduler scheduler)
        {
            var f = new IosHttpServerFactory(factory, connWatcher);

            return(f.Create(channel, scheduler));
        }
Ejemplo n.º 12
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
 }
Ejemplo n.º 13
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.responseFactory = new ResponseFactory(requestDelegate);
 }
Ejemplo n.º 14
0
 public static IServer CreateIosHttp(this IServerFactory factory, IHttpRequestDelegate channel, IConnectionWatcher connWatcher, IScheduler scheduler)
 {
     var f = new IosHttpServerFactory(factory, connWatcher);
     return f.Create(channel, scheduler);
 }
Ejemplo n.º 15
0
 public IServer Create(IHttpRequestDelegate del, IScheduler scheduler)
 {
     return(serverFactory.Create(new HttpServerDelegate(del), scheduler));
 }
Ejemplo n.º 16
0
 public IServer Create(IHttpRequestDelegate del, IScheduler scheduler)
 {
     return serverFactory.Create(new IosHttpServerDelegate(del, connWatcher), scheduler);
 }
Ejemplo n.º 17
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
Ejemplo n.º 18
0
 public HttpServerTransactionDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
 }
Ejemplo n.º 19
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
 }