// Obtain the context that was previously suspended and resume.
// We pass in Invoke Action so the filter chain will call
// handleConnect on the next filter.
FilterChainContext suspendedContext = tunnelRequestEvent.getSuspendedContext();
suspendedContext.resume(ctx.getInvokeAction());
// Stop further event processing.
return ctx.getStopAction();
}
return ctx.getInvokeAction();