File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ See the License for the specific language governing permissions and
1111limitations under the License.
1212*/
1313
14-
14+ /**
15+ * Represents the call-type associated with the method invoked by the actor runtime
16+ */
1517export enum ActorCallType {
1618 /**
1719 * Specifies that the method invoked is an actor interface method for a given
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ See the License for the specific language governing permissions and
1111limitations under the License.
1212*/
1313
14-
14+ /**
15+ * A enumeration that represents the kind of state change for an actor state
16+ * when saves change is called to a set of actor states.
17+ */
1518enum StateChangeKind {
1619 // No change in state
1720 NONE = 0 ,
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ See the License for the specific language governing permissions and
1111limitations under the License.
1212*/
1313
14-
14+ /**
15+ * Hypertext Transfer Protocol (HTTP) response status codes.
16+ * @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes }
17+ */
1518enum HttpStatusCode {
1619
1720 /**
You can’t perform that action at this time.
0 commit comments