Hi All,
I'm trying to advise the PageLoader service because we have some custom page caching requirements. I've tried the following but it doesn't seem to get invoked. Is it even possible to advise this service? If so can anyone tell me what I'm doing wrong?

    @Advise(serviceInterface = ComponentAssemblerSource.class)
    @Match("PageLoader")
    public static void siteKeyPageCache(MethodAdviceReceiver receiver) {
        MethodAdvice advice = new MethodAdvice() {
            public void advise(Invocation invocation) {
                ...
            }
        };
    }

Many thanks,

Jack

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to