Java FileLock releaseQuietly(final FileLock lock)

Here you can find the source of releaseQuietly(final FileLock lock)

Description

Releases the given lock quietly - no logging, no exception

License

Apache License

Parameter

Parameter Description
lock a parameter

Declaration

public static void releaseQuietly(final FileLock lock) 

Method Source Code

//package com.java2s;
/*/*from   www  .ja  v a 2  s . co  m*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */

import java.io.IOException;

import java.nio.channels.FileLock;

public class Main {
    /**
     * Releases the given lock quietly - no logging, no exception
     *
     * @param lock
     */
    public static void releaseQuietly(final FileLock lock) {
        if (null != lock) {
            try {
                lock.release();
            } catch (final IOException io) {
                /*IGNORE*/
            }
        }
    }
}

Related

  1. lockFile(File file, RandomAccessFile raf)
  2. lockFileExists(File file)
  3. openTcpSocket(boolean blocking)
  4. pauseForLock(File f, int frequency, int totalTime)
  5. releaseQuietly(FileLock lock)
  6. releaseSilent(FileLock fileLock)
  7. setNonBlockingFD(Channel c, boolean blocking)
  8. tryLock(File file)
  9. trylock(File file, boolean shared)