Ejemplo n.º 1
0
 public HttpResponse(int size)
 {
     _headers = new LinkedBuffer();
     _headers.Allocate(size / 2);
     _body = new LinkedBuffer();
     _body.Allocate(size / 2);
 }
Ejemplo n.º 2
0
 public ResponseFormatter(LinkedBuffer buffer)
 {
     _buffer = buffer;
 }