Examples of SRSCachingInterceptor


Examples of org.apache.tapestry5.internal.services.assets.SRSCachingInterceptor

    @Decorate(id = "Cache", serviceInterface = StreamableResourceSource.class)
    @Order("after:GZipCompression")
    public StreamableResourceSource enableUncompressedCaching(StreamableResourceSource delegate,
            ResourceChangeTracker tracker)
    {
        SRSCachingInterceptor interceptor = new SRSCachingInterceptor(tracker, delegate);

        tracker.addInvalidationListener(interceptor);

        return interceptor;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.