forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDispatch.java
More file actions
40 lines (38 loc) · 911 Bytes
/
Dispatch.java
File metadata and controls
40 lines (38 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
package io.jooby.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Dispatch operator for MVC routes.
*
* <pre>
* @Path("/r")
* class Resources {
*
* @Dispatch
* @GET
* public ... dispatch() {
* // do blocking calls
* }
* }
* </pre>
*
* @author edgar
* @since 2.0.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD })
public @interface Dispatch {
/**
* Name of the executor to use or blank to use the server worker executor.
*
* @return Name of the executor to use or blank to use the server worker executor.
*/
String value() default "worker";
}