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

com.tangosol.util.SynchronousListener Maven / Gradle / Ivy

There is a newer version: 24.03
Show newest version
/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */

package com.tangosol.util;


/**
* A tag interface indicating that a listener implementation has to receive
* the event notifications synchronously on the corresponding service's thread.
* 

* This interface should be considered as a very advanced feature, as * a listener implementation that is marked as a SynchronousListener * must exercise extreme caution during event processing since any delay * with return or unhandled exception will cause a delay or complete * shutdown of the corresponding service. * * @since Coherence 3.6 * @author rhl 2010.03.07 */ public interface SynchronousListener { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy