
com.sun.jts.CosTransactions.LogUpcallTarget Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1995-1997 IBM Corp. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
//----------------------------------------------------------------------------
//
// Module: LogUpcallTarget.java
//
// Description: Log short-on-storage upcall interface.
//
// Product: com.sun.jts.CosTransactions
//
// Author: Simon Holdsworth
//
// Date: March, 1997
//----------------------------------------------------------------------------
package com.sun.jts.CosTransactions;
/**
* The LogUpcallTarget interface provides an operation that the log will call
* in the event it goes short-on-storage. This class must be sub-classed in
* order to implement the method that will handle the situation.
*
* @version 0.01
*
* @author Simon Holdsworth, IBM Corporation
*
* @see
*/
interface LogUpcallTarget {
/**
* This is the upcall which is called by the log file.
*
* @param
*
* @return
*
* @see
*/
void upcall(int reason);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy