public HttpActor(HttpActorType type, QQContext context, IHttpAction action, Exception throwable) { _type = type; _context = context; _action = action; _throwable = throwable; }
public HttpActor(HttpActorType type, QQContext context, IHttpAction action, QQHttpResponse response) { _type = type; _context = context; _action = action; _response = response; }
public HttpActor(HttpActorType type, QQContext context, IHttpAction action, long current, long total) { _type = type; _context = context; _action = action; _current = current; _total = total; }
public HttpActor(HttpActorType type, QQContext context, IHttpAction action) { _type = type; _context = context; _action = action; }
public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, QQHttpResponse response) { _type = type; _context = context; _action = action; _response = response; }
public HttpActor(HttpActorType type, IQQContext context, IHttpAction action) { _type = type; _context = context; _action = action; }
public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, long current, long total) { _type = type; _context = context; _action = action; _current = current; _total = total; }
public HttpActor(HttpActorType type, IQQContext context, IHttpAction action, Exception throwable) { _type = type; _context = context; _action = action; _throwable = throwable; }