Example usage for org.apache.commons.transaction.file FileResourceManager stop

List of usage examples for org.apache.commons.transaction.file FileResourceManager stop

Introduction

In this page you can find the example usage for org.apache.commons.transaction.file FileResourceManager stop.

Prototype

public synchronized boolean stop(int mode) throws ResourceManagerSystemException 

Source Link

Usage

From source file:com.anrisoftware.globalpom.fileresourcemanager.ResourceSaver.java

private void stopManager(FileResourceManager manager) throws FileResourceException {
    try {//from w w  w .  j a  v  a 2s.c  o m
        manager.stop(SHUTDOWN_MODE_NORMAL);
    } catch (ResourceManagerSystemException e) {
        throw log.errorStopManager(e, manager.getStoreDir());
    }
}