com.alibaba.rsocket.spring.RSocketHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibaba-rsocket-service-common Show documentation
Show all versions of alibaba-rsocket-service-common Show documentation
RSocket service common to help Reactive Service API definition
package com.alibaba.rsocket.spring;
import org.springframework.core.annotation.AliasFor;
import org.springframework.messaging.handler.annotation.MessageMapping;
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@MessageMapping()
public @interface RSocketHandler {
@AliasFor(annotation = MessageMapping.class)
String[] value() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy