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

org.bitcoinj.net.AbstractTimeoutHandler Maven / Gradle / Ivy

There is a newer version: 21.0.0
Show newest version
/*
 * Copyright 2013 Google Inc.
 *
 * 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.bitcoinj.net;

import java.util.Timer;
import java.util.TimerTask;

/**
 * 

A base class which provides basic support for socket timeouts. It is used instead of integrating timeouts into the * NIO select thread both for simplicity and to keep code shared between NIO and blocking sockets as much as possible. *

*/ public abstract class AbstractTimeoutHandler { // TimerTask and timeout value which are added to a timer to kill the connection on timeout private TimerTask timeoutTask; private long timeoutMillis = 0; private boolean timeoutEnabled = true; // A timer which manages expiring channels as their timeouts occur (if configured). private static final Timer timeoutTimer = new Timer("AbstractTimeoutHandler timeouts", true); /** *

Enables or disables the timeout entirely. This may be useful if you want to store the timeout value but wish * to temporarily disable/enable timeouts.

* *

The default is for timeoutEnabled to be true but timeoutMillis to be set to 0 (ie disabled).

* *

This call will reset the current progress towards the timeout.

*/ public synchronized final void setTimeoutEnabled(boolean timeoutEnabled) { this.timeoutEnabled = timeoutEnabled; resetTimeout(); } /** *

Sets the receive timeout to the given number of milliseconds, automatically killing the connection if no * messages are received for this long

* *

A timeout of 0 is interpreted as no timeout.

* *

The default is for timeoutEnabled to be true but timeoutMillis to be set to 0 (ie disabled).

* *

This call will reset the current progress towards the timeout.

*/ public synchronized final void setSocketTimeout(int timeoutMillis) { this.timeoutMillis = timeoutMillis; resetTimeout(); } /** * Resets the current progress towards timeout to 0. */ protected synchronized void resetTimeout() { if (timeoutTask != null) timeoutTask.cancel(); if (timeoutMillis == 0 || !timeoutEnabled) return; timeoutTask = new TimerTask() { @Override public void run() { timeoutOccurred(); } }; timeoutTimer.schedule(timeoutTask, timeoutMillis); } protected abstract void timeoutOccurred(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy