Skip to content

Commit b4db385

Browse files
mfateevLiang Mei
authored and
Liang Mei
committed
Added JavaDoc of ActivityInterface
1 parent 68767ae commit b4db385

File tree

1 file changed

+42
-2
lines changed

1 file changed

+42
-2
lines changed

src/main/java/com/uber/cadence/activity/ActivityInterface.java

+42-2
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,59 @@
1717

1818
package com.uber.cadence.activity;
1919

20+
import com.uber.cadence.workflow.Workflow;
2021
import java.lang.annotation.ElementType;
2122
import java.lang.annotation.Retention;
2223
import java.lang.annotation.RetentionPolicy;
2324
import java.lang.annotation.Target;
2425

2526
/**
2627
* Indicates that the interface is an activity interface. Only interfaces annotated with this
27-
* annotation can be used as parameters to {@link
28-
* com.uber.cadence.workflow.Workflow#newActivityStub(Class)} methods.
28+
* annotation can be used as parameters to {@link Workflow#newActivityStub(Class)} methods.
2929
*
3030
* <p>Each method of the interface annotated with <code>ActivityInterface</code> including inherited
3131
* from interfaces is a separate activity. By default the name of an activity type is "short
3232
* interface name"_"method name".
33+
*
34+
* <p>Example:
35+
*
36+
* <pre><code>
37+
* public interface A {
38+
* a();
39+
* }
40+
*
41+
* {@literal @}ActivityInterface
42+
* public interface B extends A {
43+
* b();
44+
* }
45+
*
46+
* {@literal @}ActivityInterface
47+
* public interface C extends B {
48+
* c();
49+
* }
50+
*
51+
* public class CImpl implements C {
52+
* public void a() {}
53+
* public void b() {}
54+
* public void c() {}
55+
* }
56+
* </code></pre>
57+
*
58+
* When <code>CImpl</code> instance is registered with the {@link com.uber.cadence.worker.Worker} the
59+
* following activities are registered:
60+
*
61+
* <p>
62+
*
63+
* <ul>
64+
* <li>B_a
65+
* <li>B_b
66+
* <li>C_c
67+
* </ul>
68+
*
69+
* Note that method <code>a()</code> is registered as "B_a" because interface <code>A</code> lacks
70+
* ActivityInterface annotation. The workflow code can call activities through stubs to <code>B
71+
* </code> and <code>C</code> interfaces. A call to crate stub to <code>A</code> interface will fail
72+
* as <code>A</code> is not annotated with ActivityInterface.
3373
*/
3474
@Retention(RetentionPolicy.RUNTIME)
3575
@Target(ElementType.TYPE)

0 commit comments

Comments
 (0)