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

io.nats.client.ClosedCallback Maven / Gradle / Ivy

There is a newer version: 2.20.2
Show newest version
/*
 *  Copyright (c) 2015-2016 Apcera Inc. All rights reserved. This program and the accompanying
 *  materials are made available under the terms of the MIT License (MIT) which accompanies this
 *  distribution, and is available at http://opensource.org/licenses/MIT
 */

package io.nats.client;

/**
 * When a {@code Connection} is closed for any reason, the {@code Connection} object's
 * {@code ClosedCallback} is notifed, if one has been registered.
 *
 * @see Connection#setClosedCallback(ClosedCallback)
 */
public interface ClosedCallback {
    /**
     * This callback notification method is invoked when the {@code Connection} is closed.
     *
     * @param event contains information pertinent to the close event.
     */
    void onClose(ConnectionEvent event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy