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

com.tangosol.net.events.annotation.UnsolicitedCommitEvents Maven / Gradle / Ivy

There is a newer version: 24.09
Show newest version
/*
 * 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.annotation;

import com.tangosol.net.events.partition.UnsolicitedCommitEvent;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * UnsolicitedCommitInterceptor is an annotation that should be applied to
 * {@link com.tangosol.net.events.EventInterceptor} implementations
 * that want to receive {@link UnsolicitedCommitEvent}s.
 *
 * @author as  2020.04.01
 * @since 20.06
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Events
public @interface UnsolicitedCommitEvents
    {
    /**
     * This element specifies all types of {@link UnsolicitedCommitEvent.Type}s
     * the interceptor would like to be invoked on.
     * 

* If not specified, the interceptor will be registered to handle ALL * {@link UnsolicitedCommitEvent.Type}s. * * @return all {@link UnsolicitedCommitEvent.Type}s the * {@link com.tangosol.net.events.EventInterceptor} would like to * receive notifications on */ UnsolicitedCommitEvent.Type[] value() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy