All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tapestry5.ioc.services.ThunkCreator Maven / Gradle / Ivy

The newest version!
// Copyright 2009 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.apache.tapestry5.ioc.services;

import org.apache.tapestry5.commons.ObjectCreator;

/**
 * A thunk is a delayed calculation. In Java and Tapestry terms, a
 * Thunk is a proxy object of a particular interface that delegates all methods to an object of the same type obtained
 * from an {@link org.apache.tapestry5.commons.ObjectProvider}. This is used by {@link
 * org.apache.tapestry5.ioc.services.LazyAdvisor} to build lazy thunk proxies.
 *
 * @since 5.1.0.1
 */
public interface ThunkCreator
{
    /**
     * Creates a Thunk of the given proxy type.
     *
     * @param proxyType     type of object to create (must be an interface)
     * @param objectCreator provides an instance of the same type on demand (may be invoked multiple times)
     * @param description   to be returned from the thunk's toString() method
     * @param            type of thunk
     * @return thunk of given type
     */
     T createThunk(Class proxyType, ObjectCreator objectCreator, String description);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy