run method
Executes the middleware for an incoming client.
Implementation
void run(socket, Function fn) {
var fns = this.fns.sublist(0);
if (fns.isEmpty) {
fn(null);
return;
}
run0(0, fns, socket, fn);
}
Executes the middleware for an incoming client.
void run(socket, Function fn) {
var fns = this.fns.sublist(0);
if (fns.isEmpty) {
fn(null);
return;
}
run0(0, fns, socket, fn);
}