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

org.zeromq.jms.annotation.ZmqComponent Maven / Gradle / Ivy

There is a newer version: 3.0.1-RELEASE
Show newest version
package org.zeromq.jms.annotation;

/*
 * Copyright (c) 2015 Jeremy Miller
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 *  Annotation tag used to indicate the class can be used within a Zero MQ URI.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ZmqComponent {

    /**
     * return "optional" name the filter wishes to be called within a URI, i.e. "retry".
     */
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy