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

net.sf.jasperreports.engine.JRVirtualizer Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2005 Works, Inc. All rights reserved.
 * http://www.works.com
 * Copyright (C) 2005 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */

/*
 * Licensed to Jaspersoft Corporation under a Contributer Agreement
 */
package net.sf.jasperreports.engine;


/**
 * @author John Bindel
 * @see net.sf.jasperreports.engine.JRVirtualizationHelper
 */
public interface JRVirtualizer
{
	/**
	 * Lets this virtualizer know that it must track the object.

* * All virtualizable object must register with their virtualizer * upon construction. */ void registerObject(JRVirtualizable o); /** * Lets this virtualizer know that it no longer must track the * object. */ void deregisterObject(JRVirtualizable o); /** * Lets the virtualizer know that this object is still being used. * This should be called to help the virtualizer determine which * objects to keep in its cache, and which objects to page-out * when it must do some paging-out.

* * The virtualizer gets to decide what type of caching strategy * it will use. */ void touch(JRVirtualizable o); /** * Called when the virtual object must be paged-in. *

* If the object's virtual data is not paged-out, the object will only be * {@link #touch(JRVirtualizable) touched}. */ void requestData(JRVirtualizable o); /** * Called when the virtual object paged-out data should be freed. *

* If the object's virtual data is not paged-out, the object will only be * {@link #touch(JRVirtualizable) touched}. */ void clearData(JRVirtualizable o); /** * Called when the virtual object should be paged-out. */ void virtualizeData(JRVirtualizable o); /** * Called when we are done with the virtualizer and wish to * cleanup any resources it has. */ void cleanup(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy