com.tangosol.net.events.SessionDispatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coherence Show documentation
Show all versions of coherence Show documentation
Oracle Coherence Community Edition
/*
* Copyright (c) 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.net.events;
/**
* A CoherenceDispatcher raises {@link Event}s pertaining to
* operations on a {@link com.tangosol.net.Coherence} instance:
*
* - {@link CoherenceLifecycleEvent CoherenceLifecycleEvents}
*
*
* @author Jonathan Knight 2020.12.16
* @since 20.12
*/
public interface SessionDispatcher
extends EventDispatcher
{
/**
* Return the name of the {@link com.tangosol.net.Session} instance that this
* {@link SessionDispatcher} is associated with.
*
* @return the name of the {@link com.tangosol.net.Session} instance
*/
String getName();
}