Configuration config = new ConfigurationBuilder()
.customInterceptors().interceptors()
.add(new FirstInterceptor()).first()
.add(new LastInterceptor()).last()
.add(new FixPositionInterceptor()).atIndex(8)
.add(new AfterInterceptor()).after(LockingInterceptor.class)
.add(new BeforeInterceptor()).before(CallInterceptor.class)
.build();
Configuration config = new ConfigurationBuilder()
.customInterceptors().interceptors()
.add(new FirstInterceptor()).first()
.add(new LastInterceptor()).last()
.add(new FixPositionInterceptor()).atIndex(8)
.add(new AfterInterceptor()).after(LockingInterceptor.class)
.add(new BeforeInterceptor()).before(CallInterceptor.class)
.build();
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow