addInterceptor method

void addInterceptor(
  1. SimpleInterceptor interceptor
)

Adds an interceptor at the end of the chain (called LAST)

Implementation

void addInterceptor(SimpleInterceptor interceptor) {
  _interceptors.add(interceptor);
}