示例#1
0
 public HttpActor(HttpActorType type, QQContext context, IHttpAction action, Exception throwable)
 {
     _type      = type;
     _context   = context;
     _action    = action;
     _throwable = throwable;
 }
示例#2
0
 public HttpActor(HttpActorType type, QQContext context, IHttpAction action, QQHttpResponse response)
 {
     _type     = type;
     _context  = context;
     _action   = action;
     _response = response;
 }
示例#3
0
 public HttpActor(HttpActorType type, QQContext context, IHttpAction action, long current, long total)
 {
     _type    = type;
     _context = context;
     _action  = action;
     _current = current;
     _total   = total;
 }
示例#4
0
 public HttpActor(HttpActorType type, QQContext context, IHttpAction action)
 {
     _type    = type;
     _context = context;
     _action  = action;
 }
示例#5
0
 public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, QQHttpResponse response)
 {
     _type = type;
     _context = context;
     _action = action;
     _response = response;
 }
示例#6
0
 public HttpActor(HttpActorType type, IQQContext context, IHttpAction action)
 {
     _type = type;
     _context = context;
     _action = action;
 }
示例#7
0
 public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, long current, long total)
 {
     _type = type;
     _context = context;
     _action = action;
     _current = current;
     _total = total;
 }
示例#8
0
 public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, Exception throwable)
 {
     _type = type;
     _context = context;
     _action = action;
     _throwable = throwable;
 }