diff --git a/README.md b/README.md index 7855bb49c..c4dbd7a52 100644 --- a/README.md +++ b/README.md @@ -52,19 +52,19 @@ For a Maven project, add the following to your `pom.xml` file: io.dapr dapr-sdk - 1.7.1 + 1.8.0 io.dapr dapr-sdk-actors - 1.7.1 + 1.8.0 io.dapr dapr-sdk-springboot - 1.7.1 + 1.8.0 ... @@ -78,11 +78,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.7.1') + compile('io.dapr:dapr-sdk:1.8.0') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.7.1') + compile('io.dapr:dapr-sdk-actors:1.8.0') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.7.1') + compile('io.dapr:dapr-sdk-springboot:1.8.0') } ``` diff --git a/daprdocs/content/en/java-sdk-docs/_index.md b/daprdocs/content/en/java-sdk-docs/_index.md index a4ba30d60..63748a877 100644 --- a/daprdocs/content/en/java-sdk-docs/_index.md +++ b/daprdocs/content/en/java-sdk-docs/_index.md @@ -31,19 +31,19 @@ For a Maven project, add the following to your `pom.xml` file: io.dapr dapr-sdk - 1.7.1 + 1.8.0 io.dapr dapr-sdk-actors - 1.7.1 + 1.8.0 io.dapr dapr-sdk-springboot - 1.7.1 + 1.8.0 ... @@ -57,11 +57,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.7.1') + compile('io.dapr:dapr-sdk:1.8.0') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.7.1') + compile('io.dapr:dapr-sdk-actors:1.8.0') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.7.1') + compile('io.dapr:dapr-sdk-springboot:1.8.0') } ``` @@ -72,7 +72,7 @@ You can fix this by specifying a compatible OkHttp version in your project to ma com.squareup.okhttp3 okhttp - 4.9.0 + 1.8.0 ``` diff --git a/daprdocs/content/en/java-sdk-docs/_index.mdbak b/daprdocs/content/en/java-sdk-docs/_index.mdbak index 4e8d553ba..87f3c9b81 100644 --- a/daprdocs/content/en/java-sdk-docs/_index.mdbak +++ b/daprdocs/content/en/java-sdk-docs/_index.mdbak @@ -31,19 +31,19 @@ For a Maven project, add the following to your `pom.xml` file: io.dapr dapr-sdk - 1.7.1 + 1.8.0 io.dapr dapr-sdk-actors - 1.7.1 + 1.8.0 io.dapr dapr-sdk-springboot - 1.7.1 + 1.8.0 ... @@ -57,11 +57,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.7.0') + compile('io.dapr:dapr-sdk:1.7.1') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.7.0') + compile('io.dapr:dapr-sdk-actors:1.7.1') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.7.0') + compile('io.dapr:dapr-sdk-springboot:1.7.1') } ``` @@ -72,7 +72,7 @@ You can fix this by specifying a compatible OkHttp version in your project to ma com.squareup.okhttp3 okhttp - 1.7.1 + 1.8.0 ``` @@ -148,7 +148,13 @@ try (DaprClient client = (new DaprClientBuilder()).build()) { ```java import com.fasterxml.jackson.databind.ObjectMapper; import io.dapr.Topic; +import io.dapr.client.domain.BulkSubscribeAppResponse; +import io.dapr.client.domain.BulkSubscribeAppResponseEntry; +import io.dapr.client.domain.BulkSubscribeAppResponseStatus; +import io.dapr.client.domain.BulkSubscribeMessage; +import io.dapr.client.domain.BulkSubscribeMessageEntry; import io.dapr.client.domain.CloudEvent; +import io.dapr.springboot.annotations.BulkSubscribe; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @@ -186,6 +192,62 @@ public class SubscriberController { }); } + @BulkSubscribe() + @Topic(name = "testingtopicbulk", pubsubName = "${myAppProperty:messagebus}") + @PostMapping(path = "/testingtopicbulk") + public Mono handleBulkMessage( + @RequestBody(required = false) BulkSubscribeMessage> bulkMessage) { + return Mono.fromCallable(() -> { + if (bulkMessage.getEntries().size() == 0) { + return new BulkSubscribeAppResponse(new ArrayList()); + } + + System.out.println("Bulk Subscriber received " + bulkMessage.getEntries().size() + " messages."); + + List entries = new ArrayList(); + for (BulkSubscribeMessageEntry entry : bulkMessage.getEntries()) { + try { + System.out.printf("Bulk Subscriber message has entry ID: %s\n", entry.getEntryId()); + CloudEvent cloudEvent = (CloudEvent) entry.getEvent(); + System.out.printf("Bulk Subscriber got: %s\n", cloudEvent.getData()); + entries.add(new BulkSubscribeAppResponseEntry(entry.getEntryId(), BulkSubscribeAppResponseStatus.SUCCESS)); + } catch (Exception e) { + e.printStackTrace(); + entries.add(new BulkSubscribeAppResponseEntry(entry.getEntryId(), BulkSubscribeAppResponseStatus.RETRY)); + } + } + return new BulkSubscribeAppResponse(entries); + }); + } +} +``` + +##### Bulk Publish Messages +> Note: API is in Alpha stage + + +```java +import io.dapr.client.DaprClientBuilder; +import io.dapr.client.DaprPreviewClient; +import io.dapr.client.domain.BulkPublishResponse; +import io.dapr.client.domain.BulkPublishResponseFailedEntry; +import java.util.ArrayList; +import java.util.List; +class Solution { + public void publishMessages() { + try (DaprPreviewClient client = (new DaprClientBuilder()).buildPreviewClient()) { + // Create a list of messages to publish + List messages = new ArrayList<>(); + for (int i = 0; i < NUM_MESSAGES; i++) { + String message = String.format("This is message #%d", i); + messages.add(message); + System.out.println("Going to publish message : " + message); + } + + // Publish list of messages using the bulk publish API + BulkPublishResponse res = client.publishEvents(PUBSUB_NAME, TOPIC_NAME, "text/plain", messages).block() + } + } } ``` @@ -292,13 +354,16 @@ try (DaprPreviewClient client = (new DaprClientBuilder()).buildPreviewClient()) // Get configuration for a single key Mono item = client.getConfiguration(CONFIG_STORE_NAME, CONFIG_KEY).block(); -// Get Configurations for multiple keys - Mono> items = + // Get configurations for multiple keys + Mono> items = client.getConfiguration(CONFIG_STORE_NAME, CONFIG_KEY_1, CONFIG_KEY_2); - // Susbcribe to Confifuration changes - Flux> outFlux = client.subscribeToConfiguration(CONFIG_STORE_NAME, CONFIG_KEY_1, CONFIG_KEY_2); + // Subscribe to configuration changes + Flux outFlux = client.subscribeConfiguration(CONFIG_STORE_NAME, CONFIG_KEY_1, CONFIG_KEY_2); outFlux.subscribe(configItems -> configItems.forEach(...)); + + // Unsubscribe from configuration changes + Mono unsubscribe = client.unsubscribeConfiguration(SUBSCRIPTION_ID, CONFIG_STORE_NAME) } ``` diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html index 4061f92c4..a27240c11 100644 --- a/docs/allclasses-index.html +++ b/docs/allclasses-index.html @@ -2,37 +2,56 @@ - -All Classes (dapr-sdk-parent 1.7.1 API) - + +All Classes (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ + + + + -

All Classes

-
-
-
-
-
Class
-
Description
- -
+
+
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/allclasses.html b/docs/allclasses.html new file mode 100644 index 000000000..e43dd2697 --- /dev/null +++ b/docs/allclasses.html @@ -0,0 +1,409 @@ + + + + + +All Classes (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + +
+

All Classes

+
+ +
+
+ + diff --git a/docs/allpackages-index.html b/docs/allpackages-index.html index c9818d3d4..9c403813b 100644 --- a/docs/allpackages-index.html +++ b/docs/allpackages-index.html @@ -2,33 +2,50 @@ - -All Packages (dapr-sdk-parent 1.7.1 API) - + +All Packages (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ +
+ + + -

All Packages

-
Package Summary
-
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/constant-values.html b/docs/constant-values.html index 4a47c4765..83d832648 100644 --- a/docs/constant-values.html +++ b/docs/constant-values.html @@ -2,33 +2,50 @@ - -Constant Field Values (dapr-sdk-parent 1.7.1 API) - + +Constant Field Values (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ +
+ + + -

Constant Field Values

-
+

Contents

-
+
+ + +

io.dapr.*

-
+
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/deprecated-list.html b/docs/deprecated-list.html index cfc905e66..0e36210ce 100644 --- a/docs/deprecated-list.html +++ b/docs/deprecated-list.html @@ -2,300 +2,806 @@ - -Deprecated List (dapr-sdk-parent 1.7.1 API) - + +Deprecated List (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ +
+ + + -

Deprecated API

Contents

-
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/help-doc.html b/docs/help-doc.html index 73424f824..f523feeb1 100644 --- a/docs/help-doc.html +++ b/docs/help-doc.html @@ -2,33 +2,50 @@ - -API Help (dapr-sdk-parent 1.7.1 API) - + +API Help (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ +
+ + + -

How This API Document Is Organized

-
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-
+
+
    +
  • +

    Overview

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    -
    +
  • +
  • +

    Package

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:

    -
      +
      • Interfaces
      • Classes
      • -
      • Enum Classes
      • +
      • Enums
      • Exceptions
      • Errors
      • -
      • Annotation Interfaces
      • +
      • Annotation Types
    -
    +
  • +
  • +

    Class or Interface

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
      +
      • Class Inheritance Diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • @@ -84,7 +133,7 @@

        Class or Interface

      • Class or Interface Description

      -
        +
        • Nested Class Summary
        • Field Summary
        • Property Summary
        • @@ -92,80 +141,142 @@

          Class or Interface

        • Method Summary

        -
          -
        • Field Details
        • -
        • Property Details
        • -
        • Constructor Details
        • -
        • Method Details
        • +
            +
          • Field Detail
          • +
          • Property Detail
          • +
          • Constructor Detail
          • +
          • Method Detail
          -

          The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

          +

          Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    -
    -

    Annotation Interface

    -

    Each annotation interface has its own separate page with the following sections:

    -
      -
    • Annotation Interface Declaration
    • -
    • Annotation Interface Description
    • + +
    • +
      +

      Annotation Type

      +

      Each annotation type has its own separate page with the following sections:

      +
        +
      • Annotation Type Declaration
      • +
      • Annotation Type Description
      • Required Element Summary
      • Optional Element Summary
      • -
      • Element Details
      • +
      • Element Detail
      -
      -

      Enum Class

      -

      Each enum class has its own separate page with the following sections:

      -
        + +
      • +
        +

        Enum

        +

        Each enum has its own separate page with the following sections:

        +
        • Enum Declaration
        • Enum Description
        • Enum Constant Summary
        • -
        • Enum Constant Details
        • +
        • Enum Constant Detail
        -
        +
      • +
      • +

        Use

        Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its "Use" page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

        -
        +
      • +
      • +

        Tree (Class Hierarchy)

        There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

        -
          +
          • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
          • When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.
        -
        +
      • +
      • +

        Deprecated API

        -

        The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to shortcomings, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

        +

        The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

        -
        +
      • +
      • +

        Index

        The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

        -
        +
      • +
      • +
        +

        All Classes

        +

        The All Classes link shows all classes and interfaces except non-static nested types.

        +
        +
      • +
      • +

        Serialized Form

        -

        Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

        +

        Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

        -
        +
      • +
      • +

        Constant Field Values

        The Constant Field Values page lists the static final fields and their values.

        -
        +
      • +
      • +

        Search

        -

        You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camel-case" abbreviations. For example:

        -
          -
        • j.l.obj will match "java.lang.Object"
        • -
        • InpStr will match "java.io.InputStream"
        • -
        • HM.cK will match "java.util.HashMap.containsKey(Object)"
        • -
        -

        Refer to the Javadoc Search Specification for a full description of search features.

        +

        You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".

        +
      • +

      -This help file applies to API documentation generated by the standard doclet.
+This help file applies to API documentation generated by the standard doclet.
+
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/index-all.html b/docs/index-all.html index efb8c54e4..90ad594be 100644 --- a/docs/index-all.html +++ b/docs/index-all.html @@ -2,21819 +2,27988 @@ - -Index (dapr-sdk-parent 1.7.1 API) - + +Index (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ + + + + -
-
-

Index

-
-A B C D E F G H I J K L M N O P Q R S T U V W 
All Classes|All Packages|Constant Field Values|Deprecated API|Serialized Form -

A

-
-
AbstractActor - Class in io.dapr.actors.runtime
+
A B C D E F G H I K L M N O P Q R S T U V W 
All Classes All Packages + + +

A

+
+
AbstractActor - Class in io.dapr.actors.runtime
Represents the base class for actors.
-
AbstractActor(ActorRuntimeContext, ActorId) - Constructor for class io.dapr.actors.runtime.AbstractActor
+
AbstractActor(ActorRuntimeContext, ActorId) - Constructor for class io.dapr.actors.runtime.AbstractActor
Instantiates a new Actor.
-
ACTIVE_ACTORS_COUNT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
ACTIVE_ACTORS_COUNT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
ACTOR_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
ACTOR_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
ActorClient - Class in io.dapr.actors.client
+
ActorClient - Class in io.dapr.actors.client
Holds a client for Dapr sidecar communication.
-
ActorClient() - Constructor for class io.dapr.actors.client.ActorClient
+
ActorClient() - Constructor for class io.dapr.actors.client.ActorClient
Instantiates a new channel for Dapr sidecar communication.
-
ActorFactory<T extends AbstractActor> - Interface in io.dapr.actors.runtime
+
ActorFactory<T extends AbstractActor> - Interface in io.dapr.actors.runtime
Creates an actor of a given type.
-
ActorId - Class in io.dapr.actors
+
ActorId - Class in io.dapr.actors
The ActorId represents the identity of an actor within an actor service.
-
ActorId(String) - Constructor for class io.dapr.actors.ActorId
+
ActorId(String) - Constructor for class io.dapr.actors.ActorId
Initializes a new instance of the ActorId class with the id passed in.
-
ActorMethod - Annotation Interface in io.dapr.actors
+
ActorMethod - Annotation Type in io.dapr.actors
 
-
ActorMethodContext - Class in io.dapr.actors.runtime
+
ActorMethodContext - Class in io.dapr.actors.runtime
Contains information about the method that is invoked by actor runtime.
-
ActorObjectSerializer - Class in io.dapr.actors.runtime
+
ActorObjectSerializer - Class in io.dapr.actors.runtime
Serializes and deserializes internal objects.
-
ActorObjectSerializer() - Constructor for class io.dapr.actors.runtime.ActorObjectSerializer
+
ActorObjectSerializer() - Constructor for class io.dapr.actors.runtime.ActorObjectSerializer
 
-
ActorProxy - Interface in io.dapr.actors.client
+
ActorProxy - Interface in io.dapr.actors.client
Proxy to communicate to a given Actor instance in Dapr.
-
ActorProxyBuilder<T> - Class in io.dapr.actors.client
+
ActorProxyBuilder<T> - Class in io.dapr.actors.client
Builder to generate an ActorProxy instance.
-
ActorProxyBuilder(Class<T>, ActorClient) - Constructor for class io.dapr.actors.client.ActorProxyBuilder
+
ActorProxyBuilder(Class<T>, ActorClient) - Constructor for class io.dapr.actors.client.ActorProxyBuilder
Instantiates a new builder for a given Actor type, using DefaultObjectSerializer by default.
-
ActorProxyBuilder(String, Class<T>, ActorClient) - Constructor for class io.dapr.actors.client.ActorProxyBuilder
+
ActorProxyBuilder(String, Class<T>, ActorClient) - Constructor for class io.dapr.actors.client.ActorProxyBuilder
Instantiates a new builder for a given Actor type, using DefaultObjectSerializer by default.
-
ActorRuntime - Class in io.dapr.actors.runtime
+
ActorRuntime - Class in io.dapr.actors.runtime
Contains methods to register actor types.
-
ActorRuntimeConfig - Class in io.dapr.actors.runtime
+
ActorRuntimeConfig - Class in io.dapr.actors.runtime
Represents the configuration for the Actor Runtime.
-
ActorRuntimeContext<T extends AbstractActor> - Class in io.dapr.actors.runtime
+
ActorRuntimeContext<T extends AbstractActor> - Class in io.dapr.actors.runtime
Provides the context for the Actor's runtime.
-
ActorStateChange - Class in io.dapr.actors.runtime
+
ActorStateChange - Class in io.dapr.actors.runtime
Represents a state change for an actor.
-
ActorStateChangeKind - Enum Class in io.dapr.actors.runtime
+
ActorStateChangeKind - Enum in io.dapr.actors.runtime
Represents an actor's state change.
-
ActorStateManager - Class in io.dapr.actors.runtime
+
ActorStateManager - Class in io.dapr.actors.runtime
Manages state changes of a given Actor instance.
-
ActorTrace - Class in io.dapr.actors
+
ActorTrace - Class in io.dapr.actors
Class to emit trace log messages.
-
ActorTrace() - Constructor for class io.dapr.actors.ActorTrace
+
ActorTrace() - Constructor for class io.dapr.actors.ActorTrace
 
-
ActorType - Annotation Interface in io.dapr.actors
+
ActorType - Annotation Type in io.dapr.actors
Annotation to define Actor class.
-
ActorUtils - Class in io.dapr.actors
+
ActorUtils - Class in io.dapr.actors
 
-
ActorUtils() - Constructor for class io.dapr.actors.ActorUtils
+
ActorUtils() - Constructor for class io.dapr.actors.ActorUtils
 
-
add(String, T) - Method in class io.dapr.actors.runtime.ActorStateManager
+
add(String, T) - Method in class io.dapr.actors.runtime.ActorStateManager
Adds a given key/value to the Actor's state store's cache.
-
ADD - Enum constant in enum class io.dapr.actors.runtime.ActorStateChangeKind
+
ADD - io.dapr.actors.runtime.ActorStateChangeKind
State needs to be added.
-
addActiveActorsCount(int, DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCount(int, DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addActiveActorsCount(int, DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCount(int, DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addActiveActorsCount(DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCount(DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addActiveActorsCount(DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCount(DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addActiveActorsCountBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCountBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addActiveActorsCountBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addActiveActorsCountBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addAllActiveActorsCount(Iterable<? extends DaprProtos.ActiveActorsCount>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addAllActiveActorsCount(Iterable<? extends DaprProtos.ActiveActorsCount>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
addAllBindings(Iterable<String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
addAllBindings(Iterable<String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
addAllCapabilities(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
addAllCapabilities(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
addAllItems(Iterable<? extends DaprProtos.BulkStateItem>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addAllEntries(Iterable<? extends DaprAppCallbackProtos.TopicEventBulkRequestEntry>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addAllEntries(Iterable<? extends DaprProtos.BulkPublishRequestEntry>) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addAllFailedEntries(Iterable<? extends DaprProtos.BulkPublishResponseFailedEntry>) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addAllItems(Iterable<? extends DaprProtos.BulkStateItem>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The keys to get.
-
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
addAllKeys(Iterable<String>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
Optional.
-
addAllOperations(Iterable<? extends DaprProtos.TransactionalActorStateOperation>) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addAllOperations(Iterable<? extends DaprProtos.TransactionalActorStateOperation>) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addAllOperations(Iterable<? extends DaprProtos.TransactionalStateOperation>) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addAllOperations(Iterable<? extends DaprProtos.TransactionalStateOperation>) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addAllRegisteredComponents(Iterable<? extends DaprProtos.RegisteredComponents>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addAllRegisteredComponents(Iterable<? extends DaprProtos.RegisteredComponents>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addAllResults(Iterable<? extends DaprProtos.QueryStateItem>) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addAllResults(Iterable<? extends DaprProtos.QueryStateItem>) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addAllRules(Iterable<? extends DaprAppCallbackProtos.TopicRule>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addAllRules(Iterable<? extends DaprAppCallbackProtos.TopicRule>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addAllRules(Iterable<? extends DaprProtos.PubsubSubscriptionRule>) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addAllStates(Iterable<? extends CommonProtos.StateItem>) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addAllSubscriptions(Iterable<? extends DaprAppCallbackProtos.TopicSubscription>) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addAllStatuses(Iterable<? extends DaprAppCallbackProtos.TopicEventBulkResponseEntry>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addAllSubscriptions(Iterable<? extends DaprAppCallbackProtos.TopicSubscription>) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addAllTo(Iterable<String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addAllSubscriptions(Iterable<? extends DaprProtos.PubsubSubscription>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addAllTo(Iterable<String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The list of output bindings.
-
addBindings(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
addBindings(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
addBindingsBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
addBindingsBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
addCapabilities(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
addCapabilities(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
addCapabilitiesBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
addCapabilitiesBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
addClause(V) - Method in class io.dapr.client.domain.query.filters.AndFilter
+
addClause(V) - Method in class io.dapr.client.domain.query.filters.AndFilter
 
-
addClause(V) - Method in class io.dapr.client.domain.query.filters.OrFilter
+
addClause(V) - Method in class io.dapr.client.domain.query.filters.OrFilter
 
-
addItems(int, DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addEntries(int, DaprAppCallbackProtos.TopicEventBulkRequestEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntries(int, DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntries(int, DaprProtos.BulkPublishRequestEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addEntries(int, DaprProtos.BulkPublishRequestEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addEntries(DaprAppCallbackProtos.TopicEventBulkRequestEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntries(DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntries(DaprProtos.BulkPublishRequestEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addEntries(DaprProtos.BulkPublishRequestEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addEntriesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntriesBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addEntriesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
addEntriesBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
addFailedEntries(int, DaprProtos.BulkPublishResponseFailedEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addFailedEntries(int, DaprProtos.BulkPublishResponseFailedEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addFailedEntries(DaprProtos.BulkPublishResponseFailedEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addFailedEntries(DaprProtos.BulkPublishResponseFailedEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addFailedEntriesBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addFailedEntriesBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
addItems(int, DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addItems(int, DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addItems(int, DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addItems(DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addItems(DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addItems(DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addItems(DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addItemsBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addItemsBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addItemsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addItemsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
addKeys(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
addKeys(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The keys to get.
-
addKeys(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
addKeys(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
addKeys(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
addKeys(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
Optional.
-
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The keys to get.
-
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
addKeysBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
Optional.
-
addOperations(int, DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperations(int, DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperations(int, DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperations(int, DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperations(int, DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperations(int, DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addOperations(int, DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperations(int, DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addOperations(DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperations(DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperations(DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperations(DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperations(DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperations(DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addOperations(DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperations(DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addOperationsBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperationsBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperationsBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperationsBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
addOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
addRegisteredComponents(int, DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponents(int, DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRegisteredComponents(int, DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponents(int, DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRegisteredComponents(DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponents(DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRegisteredComponents(DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponents(DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRegisteredComponentsBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponentsBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRegisteredComponentsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRegisteredComponentsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
addResults(int, DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
addRepeatedField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
addResults(int, DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addResults(int, DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addResults(int, DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addResults(DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addResults(DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addResults(DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addResults(DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addResultsBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addResultsBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addResultsBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
addResultsBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
addRules(int, DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRules(int, DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addRules(int, DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRules(int, DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addRules(DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRules(int, DaprProtos.PubsubSubscriptionRule) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addRules(int, DaprProtos.PubsubSubscriptionRule.Builder) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addRules(DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addRules(DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRules(DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addRulesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRules(DaprProtos.PubsubSubscriptionRule) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addRules(DaprProtos.PubsubSubscriptionRule.Builder) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addRulesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addRulesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
addRulesBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addRulesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addRulesBuilder(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStates(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStates(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addStatesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addStatesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStatesBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStatesBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStatesBuilder() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStatesBuilder() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addStatesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addStatesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
addStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
addStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
addStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
addStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
addSubscriptions(int, DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addStatuses(int, DaprAppCallbackProtos.TopicEventBulkResponseEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addStatuses(int, DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addStatuses(DaprAppCallbackProtos.TopicEventBulkResponseEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addStatuses(DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addStatusesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addStatusesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
addSubscriptions(int, DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addSubscriptions(int, DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addSubscriptions(int, DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addSubscriptions(DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addSubscriptions(int, DaprProtos.PubsubSubscription) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addSubscriptions(int, DaprProtos.PubsubSubscription.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addSubscriptions(DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addSubscriptions(DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addSubscriptions(DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addSubscriptionsBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addSubscriptions(DaprProtos.PubsubSubscription) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addSubscriptions(DaprProtos.PubsubSubscription.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addSubscriptionsBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
addSubscriptionsBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
addTo(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
addTo(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The list of output bindings.
-
addToBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
addToBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The list of output bindings.
-
ALPHA_1_API_VERSION - Static variable in class io.dapr.client.DaprHttp
+
ALPHA_1_API_VERSION - Static variable in class io.dapr.client.DaprHttp
Dapr alpha API used in this client.
-
AndFilter - Class in io.dapr.client.domain.query.filters
+
AndFilter - Class in io.dapr.client.domain.query.filters
 
-
AndFilter() - Constructor for class io.dapr.client.domain.query.filters.AndFilter
+
AndFilter() - Constructor for class io.dapr.client.domain.query.filters.AndFilter
 
-
API_METHOD_INVOCATION_PROTOCOL - Static variable in class io.dapr.config.Properties
+
API_METHOD_INVOCATION_PROTOCOL - Static variable in class io.dapr.config.Properties
-
Determines if Dapr client should use gRPC or HTTP for Dapr's service method invocation APIs.
+
Deprecated. +
This attribute will be deleted at SDK version 1.10.
+
-
API_PROTOCOL - Static variable in class io.dapr.config.Properties
+
API_PROTOCOL - Static variable in class io.dapr.config.Properties
-
Determines if Dapr client will use gRPC or HTTP to talk to Dapr's side car.
+
Deprecated. +
This attribute will be deleted at SDK version 1.10.
+
-
API_TOKEN - Static variable in class io.dapr.config.Properties
+
API_TOKEN - Static variable in class io.dapr.config.Properties
API token for authentication between App and Dapr's side car.
-
API_VERSION - Static variable in class io.dapr.client.DaprHttp
+
API_VERSION - Static variable in class io.dapr.client.DaprHttp
Dapr API used in this client.
-
AppCallbackGrpc - Class in io.dapr.v1
+
AppCallbackAlphaGrpc - Class in io.dapr.v1
+
+
+ AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt + for Alpha RPCs.
+
+
AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub - Class in io.dapr.v1
+
+
+ AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt + for Alpha RPCs.
+
+
AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub - Class in io.dapr.v1
+
+
+ AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt + for Alpha RPCs.
+
+
AppCallbackAlphaGrpc.AppCallbackAlphaImplBase - Class in io.dapr.v1
+
+
+ AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt + for Alpha RPCs.
+
+
AppCallbackAlphaGrpc.AppCallbackAlphaStub - Class in io.dapr.v1
+
+
+ AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt + for Alpha RPCs.
+
+
AppCallbackAlphaImplBase() - Constructor for class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaImplBase
+
 
+
AppCallbackGrpc - Class in io.dapr.v1
AppCallback V1 allows user application to interact with Dapr runtime.
-
AppCallbackGrpc.AppCallbackBlockingStub - Class in io.dapr.v1
+
AppCallbackGrpc.AppCallbackBlockingStub - Class in io.dapr.v1
AppCallback V1 allows user application to interact with Dapr runtime.
-
AppCallbackGrpc.AppCallbackFutureStub - Class in io.dapr.v1
+
AppCallbackGrpc.AppCallbackFutureStub - Class in io.dapr.v1
AppCallback V1 allows user application to interact with Dapr runtime.
-
AppCallbackGrpc.AppCallbackImplBase - Class in io.dapr.v1
+
AppCallbackGrpc.AppCallbackImplBase - Class in io.dapr.v1
AppCallback V1 allows user application to interact with Dapr runtime.
-
AppCallbackGrpc.AppCallbackStub - Class in io.dapr.v1
+
AppCallbackGrpc.AppCallbackStub - Class in io.dapr.v1
AppCallback V1 allows user application to interact with Dapr runtime.
-
AppCallbackHealthCheckGrpc - Class in io.dapr.v1
+
AppCallbackHealthCheckGrpc - Class in io.dapr.v1
AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement the HealthCheck method.
-
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub - Class in io.dapr.v1
+
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub - Class in io.dapr.v1
AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement the HealthCheck method.
-
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub - Class in io.dapr.v1
+
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub - Class in io.dapr.v1
AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement the HealthCheck method.
-
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase - Class in io.dapr.v1
+
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase - Class in io.dapr.v1
AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement the HealthCheck method.
-
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub - Class in io.dapr.v1
+
AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub - Class in io.dapr.v1
AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement the HealthCheck method.
-
AppCallbackHealthCheckImplBase() - Constructor for class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
+
AppCallbackHealthCheckImplBase() - Constructor for class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
 
-
AppCallbackImplBase() - Constructor for class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
AppCallbackImplBase() - Constructor for class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
 
-
ASC - Enum constant in enum class io.dapr.client.domain.query.Sorting.Order
+
ASC - io.dapr.client.domain.query.Sorting.Order
 
-

B

-
-
BINDINGS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+ + + +

B

+
+
BINDINGS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
bindService() - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
bindService() - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaImplBase
 
-
bindService() - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
+
bindService() - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
 
-
bindService() - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
bindService() - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
 
-
BOOLEAN - Static variable in class io.dapr.utils.TypeRef
+
bindService() - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
 
-
BooleanProperty - Class in io.dapr.config
+
BOOLEAN - Static variable in class io.dapr.utils.TypeRef
+
 
+
BooleanProperty - Class in io.dapr.config
Boolean configuration property.
-
build() - Method in class io.dapr.client.DaprClientBuilder
+
build() - Method in class io.dapr.client.DaprClientBuilder
Build an instance of the Client based on the provided setup.
-
build() - Method in class io.dapr.client.DaprHttpBuilder
+
build() - Method in class io.dapr.client.DaprHttpBuilder
+
Deprecated.
Build an instance of the Http client based on the provided setup.
-
build() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
 
-
build() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
build() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
build() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
-
 
-
build() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
 
-
build(ActorId) - Method in class io.dapr.actors.client.ActorProxyBuilder
-
-
Instantiates a new ActorProxy.
-
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
build() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
build() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
build(ActorId) - Method in class io.dapr.actors.client.ActorProxyBuilder
+
+
Instantiates a new ActorProxy.
+
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
build(Channel, CallOptions) - Method in class io.dapr.v1.DaprGrpc.DaprStub
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
buildPreviewClient() - Method in class io.dapr.client.DaprClientBuilder
-
-
Build an instance of the Client based on the provided setup.
-
-
BYTE - Static variable in class io.dapr.utils.TypeRef
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
BYTE_ARRAY - Static variable in class io.dapr.utils.TypeRef
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
-

C

-
-
CALLBACK_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
CAPABILITIES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
CHAR - Static variable in class io.dapr.utils.TypeRef
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
clear() - Method in class io.dapr.actors.runtime.ActorStateManager
-
-
Clears all changes not yet saved to state store.
-
-
clear() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
clear() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
clear() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
buildPartial() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
clearActiveActorsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
buildPreviewClient() - Method in class io.dapr.client.DaprClientBuilder
-
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
-
string actor_id = 2;
+
Build an instance of the Client based on the provided setup.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
BULK_SUBSCRIBE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
BulkPublishEntry<T> - Class in io.dapr.client.domain
-
string actor_id = 2;
+
Class representing an entry in the BulkPublishRequest or BulkPublishResponse.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
BulkPublishEntry(String, T, String) - Constructor for class io.dapr.client.domain.BulkPublishEntry
-
string actor_id = 2;
+
Constructor for the BulkPublishRequestEntry object.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
BulkPublishEntry(String, T, String, Map<String, String>) - Constructor for class io.dapr.client.domain.BulkPublishEntry
-
string actor_id = 2;
+
Constructor for the BulkPublishRequestEntry object.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
bulkPublishEventAlpha1(DaprProtos.BulkPublishRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
-
string actor_id = 2;
+
+ Bulk Publishes multiple events to the specified topic.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
bulkPublishEventAlpha1(DaprProtos.BulkPublishRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
-
string actor_id = 2;
+
+ Bulk Publishes multiple events to the specified topic.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
bulkPublishEventAlpha1(DaprProtos.BulkPublishRequest, StreamObserver<DaprProtos.BulkPublishResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
-
string actor_id = 2;
+
+ Bulk Publishes multiple events to the specified topic.
-
clearActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
bulkPublishEventAlpha1(DaprProtos.BulkPublishRequest, StreamObserver<DaprProtos.BulkPublishResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
-
string actor_id = 2;
+
+ Bulk Publishes multiple events to the specified topic.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
BulkPublishRequest<T> - Class in io.dapr.client.domain
-
string actor_type = 1;
+
A request to bulk publish multiples events in a single call to Dapr.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
BulkPublishRequest(String, String, List<BulkPublishEntry<T>>) - Constructor for class io.dapr.client.domain.BulkPublishRequest
-
string actor_type = 1;
+
Constructor for BulkPublishRequest.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
BulkPublishRequest(String, String, List<BulkPublishEntry<T>>, Map<String, String>) - Constructor for class io.dapr.client.domain.BulkPublishRequest
-
string actor_type = 1;
+
Constructor for the BulkPublishRequest.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
BulkPublishResponse<T> - Class in io.dapr.client.domain
-
string actor_type = 1;
+
Class representing the response returned on bulk publishing events.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
BulkPublishResponse() - Constructor for class io.dapr.client.domain.BulkPublishResponse
-
string actor_type = 1;
+
Default constructor for class.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
BulkPublishResponse(List<BulkPublishResponseFailedEntry<T>>) - Constructor for class io.dapr.client.domain.BulkPublishResponse
-
string actor_type = 1;
+
Constructor for the BulkPublishResponse object.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
BulkPublishResponseFailedEntry<T> - Class in io.dapr.client.domain
-
string actor_type = 1;
+
Class representing the entry that failed to be published using BulkPublishRequest.
-
clearActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
BulkPublishResponseFailedEntry(BulkPublishEntry<T>, String) - Constructor for class io.dapr.client.domain.BulkPublishResponseFailedEntry
-
string actor_type = 1;
+
Constructor for BulkPublishResponseFailedEntry.
-
clearBindings() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
BulkSubscribeAppResponse - Class in io.dapr.client.domain
-
- The list of input bindings.
+
Response from the application containing status for each entry from the bulk publish message.
-
clearCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
BulkSubscribeAppResponse(List<BulkSubscribeAppResponseEntry>) - Constructor for class io.dapr.client.domain.BulkSubscribeAppResponse
-
string callback = 6;
+
Instantiate a BulkSubscribeAppResponse.
-
clearCapabilities() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
BulkSubscribeAppResponseEntry - Class in io.dapr.client.domain
-
repeated string capabilities = 4;
+
-
clearConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
BulkSubscribeAppResponseEntry(String, BulkSubscribeAppResponseStatus) - Constructor for class io.dapr.client.domain.BulkSubscribeAppResponseEntry
-
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
+
Instantiate a BulkSubscribeAppResponseEntry.
-
clearConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
BulkSubscribeAppResponseStatus - Enum in io.dapr.client.domain
-
- The concurrency of output bindings to send data to - "to" output bindings list.
+
Status of the message handled in bulk subscribe handler.
-
clearConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
BulkSubscribeMessage<T> - Class in io.dapr.client.domain
-
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
+
Represents a bulk of messages received from the message bus.
-
clearConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
BulkSubscribeMessage(List<BulkSubscribeMessageEntry<T>>, String, Map<String, String>) - Constructor for class io.dapr.client.domain.BulkSubscribeMessage
-
- The read consistency of the state store.
+
Instantiate a BulkSubscribeMessage.
-
clearContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
BulkSubscribeMessageEntry<T> - Class in io.dapr.client.domain
-
- The type of data content.
+
Represents a single event from a BulkSubscribeMessage.
-
clearContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
BulkSubscribeMessageEntry(String, T, String, Map<String, String>) - Constructor for class io.dapr.client.domain.BulkSubscribeMessageEntry
-
- Required.
+
Instantiate a BulkPubSubMessageEntry.
-
clearCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
BYTE - Static variable in class io.dapr.utils.TypeRef
+
 
+
BYTE_ARRAY - Static variable in class io.dapr.utils.TypeRef
+
 
+
BYTES - io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
+
 
+
BYTES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
+ + + +

C

+
+
CALLBACK_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
CAPABILITIES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
CHAR - Static variable in class io.dapr.utils.TypeRef
+
 
+
clear() - Method in class io.dapr.actors.runtime.ActorStateManager
-
int32 count = 2;
+
Clears all changes not yet saved to state store.
-
clearData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
+
clear() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
clear() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
clear() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
clearActiveActorsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
+
string actor_id = 2;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
+
string actor_type = 1;
+
+
clearActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
+
string actor_type = 1;
+
+
clearBindings() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
- Required.
+ The list of input bindings.
+ +
clearBulkSubscribe() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
clearBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
bytes bytes = 2;
+
+
clearCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string callback = 6;
+
+
clearCapabilities() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
+
repeated string capabilities = 4;
+
+
clearCloudEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
clearConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
+
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
+
+
clearConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The concurrency of output bindings to send data to + "to" output bindings list.
+
+
clearConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
+
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
+
+
clearConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
+
+ The read consistency of the state store.
+
+
clearContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
+
+ The type of data content.
-
clearData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
clearContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
Required.
-
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clearContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ content type of the event contained.
+
+
clearContentType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The content type for the event
+
+
clearCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
+
int32 count = 2;
+
+
clearData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
+
+ Required in unary RPCs.
+
+
clearData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
+
+ Required in unary RPCs.
+
+
clearData() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Data sent in the chunk.
+
+
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The content which will be sent to "to" output bindings.
-
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content of the event.
+
+
clearData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content of the event.
-
clearData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The byte array data
-
clearData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
bytes data = 1;
-
clearData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
clearData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
clearData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The byte array data
-
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
bytes data = 4;
-
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
bytes data = 1;
-
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The data which will be sent to output binding.
-
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The data which will be sent to output binding.
-
clearData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The data which will be published to topic.
-
clearData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object value.
-
clearData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
bytes data = 6;
-
clearData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
bytes data = 7;
-
clearDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
The content type of data value.
-
clearDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The content type of data value.
+
+
clearDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The content type for the data (optional).
-
clearDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional dead letter queue for this topic to send events to.
-
clearDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
clearDeadLetterTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string dead_letter_topic = 5;
+
+
clearDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The default path for this topic.
-
clearDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string due_time = 4;
-
clearDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string due_time = 4;
-
clearError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearEnabled() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Required.
+
+
clearEntries() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
clearEntries() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
clearEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ Unique identifier for the message.
+
+
clearEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ Unique identifier associated the message.
+
+
clearEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The request scoped unique ID referring to this message.
+
+
clearEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The response scoped unique ID referring to this message
+
+
clearError() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The error message if any on failure
+
+
clearError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The error that was returned from the state store in case of a failed get operation.
-
clearError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The error message indicating an error in processing of the query result.
-
clearEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The entity tag which represents the specific version of data.
-
clearEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The entity tag which represents the specific version of data.
-
clearEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The entity tag which represents the specific version of data.
-
clearEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clearEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The entity tag which represents the specific version of data.
-
clearEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The entity tag which represents the specific version of data.
-
clearExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
clearEvent() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The event which will be pulished to the topic
+
+
clearExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
clearExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clearExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
clearExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ Custom attributes which includes cloud event extensions.
+
+
clearExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The map of additional custom properties to be sent to the app.
+
+
clearFailedEntries() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
clearField(Descriptors.FieldDescriptor) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
clearHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
clearHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
HTTP specific fields if request conveys http-compatible request.
-
clearId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ Unique identifier for the bulk request.
+
+
clearId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The unique identifier of this cloud event.
+
+
clearId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
id identifies the event.
-
clearId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clearId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
string id = 1;
-
clearId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
clearId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
clearId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
clearId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
Subscribe id, used to stop subscription.
-
clearId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
clearId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The id to unsubscribe.
-
clearItems() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
clearInput() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
bytes input = 5;
+
+
clearInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
clearInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
string instance_id = 1;
+
+
clearInstanceId() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
clearInstanceId() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
clearInstanceId() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
+
string instance_id = 1;
+
+
clearItems() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
clearItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
clearItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
clearItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
clearItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
clearKey() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearKey() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Required.
-
clearKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
state item key
-
clearKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The key of the desired state
-
clearKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string key = 3;
-
clearKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret key.
-
clearKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The key of the desired state
-
clearKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object key.
-
clearKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string key = 1;
-
clearKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clearKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string key = 2;
-
clearKeys() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearKeys() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The keys to get.
-
clearKeys() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clearKeys() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
clearKeys() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clearKeys() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
Optional.
-
clearLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
clearLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clearLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string lock_owner = 3;
-
clearMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
clearMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The optional CEL expression used to match the event.
-
clearMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
clearMatch() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string match = 1;
+
+
clearMaxAwaitDurationMs() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Optional.
+
+
clearMaxMessagesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Optional.
+
+
clearMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
clearMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
clearMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
string message = 2;
-
clearMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
clearMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
clearMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
clearMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
clearMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
clearMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
Required.
-
clearMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clearMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string method = 3;
-
clearName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
clearName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the output binding to invoke.
-
clearName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string name = 3;
-
clearName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string name = 3;
-
clearName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string name = 1;
-
clearName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string name = 3;
-
clearName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
clearName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string name = 3;
-
clearNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
clearNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string new_name = 4;
-
clearOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
clearOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
bool ok = 1;
-
clearOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
clearOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string old_name = 3;
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
clearOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
clearOneof(Descriptors.OneofDescriptor) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
clearOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the operation type for the binding to invoke
-
clearOperations() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
clearOperations() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
clearOperations() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clearOperations() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
clearOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clearOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string operationType = 1;
-
clearOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
clearOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
The type of operation to be executed
-
clearOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Options for concurrency and consistency to save the state.
-
clearOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
State operation options which includes concurrency/ consistency/retry_policy.
-
clearParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearOptions() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
clearParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The number of parallel operations executed on the state store for a get operation.
-
clearPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The matching path from TopicSubscription/routes (if specified) for this event.
+
+
clearPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The matching path from TopicSubscription/routes (if specified) for this event.
-
clearPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
clearPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The path used to identify matches for this subscription.
-
clearPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearPath() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string path = 2;
+
+
clearPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string period = 5;
-
clearPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string period = 5;
-
clearPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The name of the pubsub the publisher sent to.
+
+
clearPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The name of the pubsub the publisher sent to.
-
clearPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
clearPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearPubsubName() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The name of the pubsub component
+
+
clearPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The name of the pubsub component
-
clearQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clearPubsubName() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string pubsub_name = 1;
+
+
clearQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The query in JSON format.
-
clearQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
clearQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Optional.
-
clearRegisteredComponents() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clearRegisteredComponents() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
clearRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
clearRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
State values to be operated on
-
clearResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
clearResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clearResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
resource_id is the lock key.
-
clearResults() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clearResults() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
clearRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional routing rules to match against.
-
clearRules() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
clearRules() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
clearSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
clearRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
clearRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
clearSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
clearSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearSeq() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Sequence number.
+
+
clearSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ source identifies the context in which an event happened.
+
+
clearSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
source identifies the context in which an event happened.
-
clearSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The version of the CloudEvents specification.
+
+
clearSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The version of the CloudEvents specification.
-
clearStates() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearStartTime() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
int64 start_time = 2;
+
+
clearStates() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
clearStates() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
clearStates() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
clearStates() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
clearStates() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
clearStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
clearStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ The status of the response.
+
+
clearStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
The list of output bindings.
-
clearStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
clearStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
-
clearStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearStatuses() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
clearStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The name of state store where states are saved.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The name of secret store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Required.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The name of state store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The name of configuration store.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string store_name = 1;
-
clearStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
clearStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The name of configuration store.
-
clearSubscriptions() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
clearSubscriptions() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
clearSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
clearSubscriptions() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
clearSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
bool success = 1;
-
clearTo() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clearTo() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The list of output bindings.
-
clearToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clearToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
Pagination token.
-
clearTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
The pubsub topic which publisher sent to.
-
clearTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clearTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
clearTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
clearTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clearTopic() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The pubsub topic
+
+
clearTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The pubsub topic
-
clearTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clearTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string topic = 2;
+
+
clearTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string ttl = 7;
-
clearTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clearTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string ttl = 8;
-
clearType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clearType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
clearType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
clearType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The type of event related to the originating occurrence.
-
clearType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
clearType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
string type = 1;
-
clearType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clearType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string type = 2;
-
clearValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Required.
-
clearValue() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
clearValue() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
value sets the etag value
-
clearValue() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clearValue() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Required.
-
clearValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
clearValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string value = 2;
-
clearValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clearValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
.google.protobuf.Any value = 3;
-
clearVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
clearVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Required.
-
clearVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Version is response only and cannot be fetched.
-
clearVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clearVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string version = 3;
-
clone() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
clearWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_component = 3;
+
+
clearWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
clearWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
clearWorkflowName() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_name = 3;
+
+
clearWorkflowType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_type = 2;
+
+
clone() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
clone() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
clone() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
clone() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
clone() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
clone() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
clone() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
clone() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
clone() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
clone() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
close() - Method in class io.dapr.actors.client.ActorClient
-
close() - Method in class io.dapr.actors.runtime.ActorRuntime
-
close() - Method in class io.dapr.client.DaprClientGrpc
+
clone() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
clone() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
close() - Method in class io.dapr.actors.client.ActorClient
+
close() - Method in class io.dapr.actors.runtime.ActorRuntime
+
close() - Method in class io.dapr.client.DaprClientGrpc
Closes the ManagedChannel for GRPC.
-
close() - Method in class io.dapr.client.DaprClientHttp
-
close() - Method in class io.dapr.client.DaprHttp
+
close() - Method in class io.dapr.client.DaprClientHttp
+
+
Deprecated.
+
+
close() - Method in class io.dapr.client.DaprHttp
Shutdown call is not necessary for OkHttpClient.
-
CloudEvent<T> - Class in io.dapr.client.domain
+
CLOUD_EVENT - io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
+
 
+
CLOUD_EVENT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
CloudEvent<T> - Class in io.dapr.client.domain
A cloud event in Dapr.
-
CloudEvent() - Constructor for class io.dapr.client.domain.CloudEvent
+
CloudEvent() - Constructor for class io.dapr.client.domain.CloudEvent
Instantiates a CloudEvent.
-
CloudEvent(String, String, String, String, byte[]) - Constructor for class io.dapr.client.domain.CloudEvent
+
CloudEvent(String, String, String, String, byte[]) - Constructor for class io.dapr.client.domain.CloudEvent
Instantiates a CloudEvent.
-
CloudEvent(String, String, String, String, String, T) - Constructor for class io.dapr.client.domain.CloudEvent
+
CloudEvent(String, String, String, String, String, T) - Constructor for class io.dapr.client.domain.CloudEvent
Instantiates a CloudEvent.
-
CommonProtos - Class in io.dapr.v1
+
CommonProtos - Class in io.dapr.v1
 
-
CommonProtos.ConfigurationItem - Class in io.dapr.v1
+
CommonProtos.ConfigurationItem - Class in io.dapr.v1
ConfigurationItem represents all the configuration with its name(key).
-
CommonProtos.ConfigurationItem.Builder - Class in io.dapr.v1
+
CommonProtos.ConfigurationItem.Builder - Class in io.dapr.v1
ConfigurationItem represents all the configuration with its name(key).
-
CommonProtos.ConfigurationItemOrBuilder - Interface in io.dapr.v1
+
CommonProtos.ConfigurationItemOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.Etag - Class in io.dapr.v1
+
CommonProtos.Etag - Class in io.dapr.v1
Etag represents a state item version
-
CommonProtos.Etag.Builder - Class in io.dapr.v1
+
CommonProtos.Etag.Builder - Class in io.dapr.v1
Etag represents a state item version
-
CommonProtos.EtagOrBuilder - Interface in io.dapr.v1
+
CommonProtos.EtagOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.HTTPExtension - Class in io.dapr.v1
+
CommonProtos.HTTPExtension - Class in io.dapr.v1
HTTPExtension includes HTTP verb and querystring when Dapr runtime delivers HTTP content.
-
CommonProtos.HTTPExtension.Builder - Class in io.dapr.v1
+
CommonProtos.HTTPExtension.Builder - Class in io.dapr.v1
HTTPExtension includes HTTP verb and querystring when Dapr runtime delivers HTTP content.
-
CommonProtos.HTTPExtension.Verb - Enum Class in io.dapr.v1
+
CommonProtos.HTTPExtension.Verb - Enum in io.dapr.v1
Type of HTTP 1.1 Methods RFC 7231: https://tools.ietf.org/html/rfc7231#page-24 RFC 5789: https://datatracker.ietf.org/doc/html/rfc5789
-
CommonProtos.HTTPExtensionOrBuilder - Interface in io.dapr.v1
+
CommonProtos.HTTPExtensionOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.InvokeRequest - Class in io.dapr.v1
+
CommonProtos.InvokeRequest - Class in io.dapr.v1
InvokeRequest is the message to invoke a method with the data.
-
CommonProtos.InvokeRequest.Builder - Class in io.dapr.v1
+
CommonProtos.InvokeRequest.Builder - Class in io.dapr.v1
InvokeRequest is the message to invoke a method with the data.
-
CommonProtos.InvokeRequestOrBuilder - Interface in io.dapr.v1
+
CommonProtos.InvokeRequestOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.InvokeResponse - Class in io.dapr.v1
+
CommonProtos.InvokeResponse - Class in io.dapr.v1
InvokeResponse is the response message inclduing data and its content type from app callback.
-
CommonProtos.InvokeResponse.Builder - Class in io.dapr.v1
+
CommonProtos.InvokeResponse.Builder - Class in io.dapr.v1
InvokeResponse is the response message inclduing data and its content type from app callback.
-
CommonProtos.InvokeResponseOrBuilder - Interface in io.dapr.v1
+
CommonProtos.InvokeResponseOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.StateItem - Class in io.dapr.v1
+
CommonProtos.StateItem - Class in io.dapr.v1
StateItem represents state key, value, and additional options to save state.
-
CommonProtos.StateItem.Builder - Class in io.dapr.v1
+
CommonProtos.StateItem.Builder - Class in io.dapr.v1
StateItem represents state key, value, and additional options to save state.
-
CommonProtos.StateItemOrBuilder - Interface in io.dapr.v1
+
CommonProtos.StateItemOrBuilder - Interface in io.dapr.v1
 
-
CommonProtos.StateOptions - Class in io.dapr.v1
+
CommonProtos.StateOptions - Class in io.dapr.v1
StateOptions configures concurrency and consistency for state operations
-
CommonProtos.StateOptions.Builder - Class in io.dapr.v1
+
CommonProtos.StateOptions.Builder - Class in io.dapr.v1
StateOptions configures concurrency and consistency for state operations
-
CommonProtos.StateOptions.StateConcurrency - Enum Class in io.dapr.v1
+
CommonProtos.StateOptions.StateConcurrency - Enum in io.dapr.v1
Enum describing the supported concurrency for state.
-
CommonProtos.StateOptions.StateConsistency - Enum Class in io.dapr.v1
+
CommonProtos.StateOptions.StateConsistency - Enum in io.dapr.v1
Enum describing the supported consistency for state.
-
CommonProtos.StateOptionsOrBuilder - Interface in io.dapr.v1
+
CommonProtos.StateOptionsOrBuilder - Interface in io.dapr.v1
+
 
+
CommonProtos.StreamPayload - Class in io.dapr.v1
+
+
+ Chunk of data sent in a streaming request or response.
+
+
CommonProtos.StreamPayload.Builder - Class in io.dapr.v1
+
+
+ Chunk of data sent in a streaming request or response.
+
+
CommonProtos.StreamPayloadOrBuilder - Interface in io.dapr.v1
 
-
compareTo(ActorId) - Method in class io.dapr.actors.ActorId
+
compareTo(ActorId) - Method in class io.dapr.actors.ActorId
Compares this instance with a specified {link #ActorId} object and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified actorId.
-
CONCURRENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateOptions
+
CONCURRENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateOptions
 
-
CONCURRENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
CONCURRENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
CONCURRENCY_FIRST_WRITE - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_FIRST_WRITE - io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_FIRST_WRITE = 1;
-
CONCURRENCY_FIRST_WRITE_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_FIRST_WRITE_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_FIRST_WRITE = 1;
-
CONCURRENCY_LAST_WRITE - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_LAST_WRITE - io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_LAST_WRITE = 2;
-
CONCURRENCY_LAST_WRITE_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_LAST_WRITE_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_LAST_WRITE = 2;
-
CONCURRENCY_UNSPECIFIED - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_UNSPECIFIED - io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_UNSPECIFIED = 0;
-
CONCURRENCY_UNSPECIFIED_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
CONCURRENCY_UNSPECIFIED_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
CONCURRENCY_UNSPECIFIED = 0;
-
ConfigurationItem - Class in io.dapr.client.domain
+
ConfigurationItem - Class in io.dapr.client.domain
A configuration item from Dapr's configuration store.
-
ConfigurationItem(String, String, String) - Constructor for class io.dapr.client.domain.ConfigurationItem
+
ConfigurationItem(String, String, String) - Constructor for class io.dapr.client.domain.ConfigurationItem
Constructor for a configuration Item.
-
ConfigurationItem(String, String, String, Map<String, String>) - Constructor for class io.dapr.client.domain.ConfigurationItem
+
ConfigurationItem(String, String, String, Map<String, String>) - Constructor for class io.dapr.client.domain.ConfigurationItem
Constructor for a configuration Item.
-
CONNECT - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
CONNECT - io.dapr.client.DaprHttp.HttpMethods
 
-
CONNECT - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
CONNECT - io.dapr.v1.CommonProtos.HTTPExtension.Verb
CONNECT = 6;
-
CONNECT - Static variable in class io.dapr.client.domain.HttpExtension
+
CONNECT - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.CONNECT Verb with empty queryString.
-
CONNECT_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
CONNECT_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
CONNECT = 6;
-
CONSISTENCY_EVENTUAL - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_EVENTUAL - io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_EVENTUAL = 1;
-
CONSISTENCY_EVENTUAL_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_EVENTUAL_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_EVENTUAL = 1;
-
CONSISTENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateOptions
+
CONSISTENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateOptions
 
-
CONSISTENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
+
CONSISTENCY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
CONSISTENCY_STRONG - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_STRONG - io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_STRONG = 2;
-
CONSISTENCY_STRONG_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_STRONG_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_STRONG = 2;
-
CONSISTENCY_UNSPECIFIED - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_UNSPECIFIED - io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_UNSPECIFIED = 0;
-
CONSISTENCY_UNSPECIFIED_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
CONSISTENCY_UNSPECIFIED_VALUE - Static variable in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
CONSISTENCY_UNSPECIFIED = 0;
-
contains(String) - Method in class io.dapr.actors.runtime.ActorStateManager
+
contains(String) - Method in class io.dapr.actors.runtime.ActorStateManager
Checks if a given state exists in state store or cache.
-
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
data hold the secret values.
-
containsData(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
containsData(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
data hold the secret values.
-
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
containsData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
data is the secret value.
-
containsData(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
containsData(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
data is the secret value.
-
containsExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
containsExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
map<string, string> extended_metadata = 4;
-
containsExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
containsExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
map<string, string> extended_metadata = 4;
-
containsExtendedMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
containsExtendedMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
map<string, string> extended_metadata = 4;
-
containsItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
containsItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
containsItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
containsItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
containsItems(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
+
containsItems(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
containsItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
containsItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
The list of items containing configuration values
-
containsItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
containsItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
The list of items containing configuration values
-
containsItems(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
containsItems(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
The list of items containing configuration values
-
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
the metadata which will be passed to/from configuration store component.
-
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
the metadata which will be passed to/from configuration store component.
-
containsMetadata(String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
the metadata which will be passed to/from configuration store component.
-
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The metadata which will be passed to state store component.
-
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem
+
containsMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem
The metadata which will be passed to state store component.
-
containsMetadata(String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
The metadata which will be passed to state store component.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
The metadata set by the input binging components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
The metadata set by the input binging components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
The metadata set by the input binging components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The metadata associated with the this bulk request.
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
+
+ The metadata associated with the this bulk request.
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ The metadata associated with the event.
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
+ The metadata associated with the event.
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
+ The metadata associated with the event.
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
+
+
+ The metadata associated with the this bulk request.
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional properties used for this topic's subscription e.g.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
containsMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
The optional properties used for this topic's subscription e.g.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
The optional properties used for this topic's subscription e.g.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The request level metadata passing to to the pubsub components
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
+
+ The request level metadata passing to to the pubsub components
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The event level metadata passing to the pubsub component
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
+
+ The event level metadata passing to the pubsub component
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
+
+
+ The event level metadata passing to the pubsub component
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
+
+
+ The request level metadata passing to to the pubsub components
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
The metadata which will be sent to app.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
The metadata used for transactional operations.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
The metadata used for transactional operations.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
The metadata used for transactional operations.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
Optional.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
Optional.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
The metadata which will be sent to secret store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
The metadata which will be sent to app.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
map<string, string> metadata = 5;
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
map<string, string> metadata = 5;
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
map<string, string> metadata = 5;
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The metadata returned from an external system
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
The metadata returned from an external system
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
The metadata returned from an external system
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The metadata passing to pub components metadata property: - key : the key of the message.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
The metadata passing to pub components metadata property: - key : the key of the message.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
The metadata passing to pub components metadata property: - key : the key of the message.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
map<string, string> metadata = 3;
+
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
The metadata which will be sent to state store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
The metadata which will be sent to app.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
The metadata which will be sent to app.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The metadata which will be sent to configuration store components.
-
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
containsMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
The metadata which will be sent to configuration store components.
-
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
containsMetadata(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
The metadata which will be sent to configuration store components.
-
containsSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
containsOptions(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
map<string, string> options = 4;
+
+
containsOptions(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
map<string, string> options = 4;
+
+
containsOptions(String) - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
map<string, string> options = 4;
+
+
containsSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
map<string, string> secrets = 1;
-
containsSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
containsSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
map<string, string> secrets = 1;
-
containsSecrets(String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
containsSecrets(String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
map<string, string> secrets = 1;
-
CONTENT_TYPE - Static variable in class io.dapr.client.domain.CloudEvent
+
CONTENT_TYPE - Static variable in class io.dapr.client.domain.CloudEvent
Mime type used for CloudEvent.
-
CONTENT_TYPE - Static variable in class io.dapr.client.domain.Metadata
+
CONTENT_TYPE - Static variable in class io.dapr.client.domain.Metadata
+
 
+
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
+
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeResponse
+
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
convertDurationFromDaprFormat(String) - Static method in class io.dapr.utils.DurationUtils
+
CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
convertBytesToEventFromGrpc(byte[], String, TypeRef<T>) - Static method in class io.dapr.utils.DefaultContentTypeConverter
+
+
Function to convert a bytes array from gRPC input into event based on given object deserializer.
+
+
convertBytesToEventFromHttp(byte[], String, TypeRef<T>) - Static method in class io.dapr.utils.DefaultContentTypeConverter
+
+
Function to convert a bytes array from HTTP input into event based on given object deserializer.
+
+
convertDurationFromDaprFormat(String) - Static method in class io.dapr.utils.DurationUtils
Converts time from the String format used by Dapr into a Duration.
-
convertDurationToDaprFormat(Duration) - Static method in class io.dapr.utils.DurationUtils
+
convertDurationToDaprFormat(Duration) - Static method in class io.dapr.utils.DurationUtils
Converts a Duration to the format used by the Dapr runtime.
-
COUNT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
convertEventToBytesForGrpc(T, String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
+
+
Function to convert a given event to bytes for gRPC calls.
+
+
convertEventToBytesForHttp(T, String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
+
+
Function to convert a given event to bytes for HTTP calls.
+
+
COUNT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
createActor(ActorRuntimeContext<T>, ActorId) - Method in interface io.dapr.actors.runtime.ActorFactory
+
createActor(ActorRuntimeContext<T>, ActorId) - Method in interface io.dapr.actors.runtime.ActorFactory
Creates an Actor.
-
createRandom() - Static method in class io.dapr.actors.ActorId
+
createRandom() - Static method in class io.dapr.actors.ActorId
Creates a new ActorId with a random id.
-

D

-
-
DaprApiProtocol - Enum Class in io.dapr.client
+ + + +

D

+
+
DaprApiProtocol - Enum in io.dapr.client
-
Transport protocol for Dapr's API.
+
Deprecated. +
This class will be deleted at SDK version 1.10.
+
-
DaprAppCallbackProtos - Class in io.dapr.v1
+
DaprAppCallbackProtos - Class in io.dapr.v1
 
-
DaprAppCallbackProtos.BindingEventRequest - Class in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventRequest - Class in io.dapr.v1
BindingEventRequest represents input bindings event.
-
DaprAppCallbackProtos.BindingEventRequest.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventRequest.Builder - Class in io.dapr.v1
BindingEventRequest represents input bindings event.
-
DaprAppCallbackProtos.BindingEventRequestOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.BindingEventResponse - Class in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventResponse - Class in io.dapr.v1
BindingEventResponse includes operations to save state or send data to output bindings optionally.
-
DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency - Enum Class in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency - Enum in io.dapr.v1
BindingEventConcurrency is the kind of concurrency
-
DaprAppCallbackProtos.BindingEventResponse.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventResponse.Builder - Class in io.dapr.v1
BindingEventResponse includes operations to save state or send data to output bindings optionally.
-
DaprAppCallbackProtos.BindingEventResponseOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.BindingEventResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.BulkSubscribeConfig - Class in io.dapr.v1
+
+
+ BulkSubscribeConfig is the message to pass settings for bulk subscribe
+
+
DaprAppCallbackProtos.BulkSubscribeConfig.Builder - Class in io.dapr.v1
+
+
+ BulkSubscribeConfig is the message to pass settings for bulk subscribe
+
+
DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.HealthCheckResponse - Class in io.dapr.v1
+
DaprAppCallbackProtos.HealthCheckResponse - Class in io.dapr.v1
HealthCheckResponse is the message with the response to the health check.
-
DaprAppCallbackProtos.HealthCheckResponse.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.HealthCheckResponse.Builder - Class in io.dapr.v1
HealthCheckResponse is the message with the response to the health check.
-
DaprAppCallbackProtos.HealthCheckResponseOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.HealthCheckResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.ListInputBindingsResponse - Class in io.dapr.v1
+
DaprAppCallbackProtos.ListInputBindingsResponse - Class in io.dapr.v1
ListInputBindingsResponse is the message including the list of input bindings.
-
DaprAppCallbackProtos.ListInputBindingsResponse.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.ListInputBindingsResponse.Builder - Class in io.dapr.v1
ListInputBindingsResponse is the message including the list of input bindings.
-
DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.ListTopicSubscriptionsResponse - Class in io.dapr.v1
+
DaprAppCallbackProtos.ListTopicSubscriptionsResponse - Class in io.dapr.v1
ListTopicSubscriptionsResponse is the message including the list of the subscribing topics.
-
DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder - Class in io.dapr.v1
ListTopicSubscriptionsResponse is the message including the list of the subscribing topics.
-
DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.TopicEventRequest - Class in io.dapr.v1
-
-
- TopicEventRequest message is compatible with CloudEvent spec v1.0 - https://github.com/cloudevents/spec/blob/v1.0/spec.md
-
-
DaprAppCallbackProtos.TopicEventRequest.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequest - Class in io.dapr.v1
- TopicEventRequest message is compatible with CloudEvent spec v1.0 - https://github.com/cloudevents/spec/blob/v1.0/spec.md
+ TopicEventBulkRequest represents request for bulk message
-
DaprAppCallbackProtos.TopicEventRequestOrBuilder - Interface in io.dapr.v1
-
 
-
DaprAppCallbackProtos.TopicEventResponse - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequest.Builder - Class in io.dapr.v1
- TopicEventResponse is response from app on published message
+ TopicEventBulkRequest represents request for bulk message
-
DaprAppCallbackProtos.TopicEventResponse.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequestEntry - Class in io.dapr.v1
- TopicEventResponse is response from app on published message
+ TopicEventBulkRequestEntry represents a single message inside a bulk request
-
DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus - Enum Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder - Class in io.dapr.v1
- TopicEventResponseStatus allows apps to have finer control over handling of the message.
+ TopicEventBulkRequestEntry represents a single message inside a bulk request
-
DaprAppCallbackProtos.TopicEventResponseOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase - Enum in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.TopicRoutes - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicEventBulkResponse - Class in io.dapr.v1
-
Protobuf type dapr.proto.runtime.v1.TopicRoutes
+
+ AppBulkResponse is response from app on published message
-
DaprAppCallbackProtos.TopicRoutes.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkResponse.Builder - Class in io.dapr.v1
-
Protobuf type dapr.proto.runtime.v1.TopicRoutes
+
+ AppBulkResponse is response from app on published message
-
DaprAppCallbackProtos.TopicRoutesOrBuilder - Interface in io.dapr.v1
-
 
-
DaprAppCallbackProtos.TopicRule - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkResponseEntry - Class in io.dapr.v1
-
Protobuf type dapr.proto.runtime.v1.TopicRule
+
+ TopicEventBulkResponseEntry Represents single response, as part of TopicEventBulkResponse, to be + sent by subscibed App for the corresponding single message during bulk subscribe
-
DaprAppCallbackProtos.TopicRule.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder - Class in io.dapr.v1
-
Protobuf type dapr.proto.runtime.v1.TopicRule
+
+ TopicEventBulkResponseEntry Represents single response, as part of TopicEventBulkResponse, to be + sent by subscibed App for the corresponding single message during bulk subscribe
-
DaprAppCallbackProtos.TopicRuleOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder - Interface in io.dapr.v1
 
-
DaprAppCallbackProtos.TopicSubscription - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicEventCERequest - Class in io.dapr.v1
- TopicSubscription represents topic and metadata.
+ TopicEventCERequest message is compatible with CloudEvent spec v1.0
-
DaprAppCallbackProtos.TopicSubscription.Builder - Class in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventCERequest.Builder - Class in io.dapr.v1
- TopicSubscription represents topic and metadata.
+ TopicEventCERequest message is compatible with CloudEvent spec v1.0
-
DaprAppCallbackProtos.TopicSubscriptionOrBuilder - Interface in io.dapr.v1
+
DaprAppCallbackProtos.TopicEventCERequestOrBuilder - Interface in io.dapr.v1
 
-
DaprClient - Interface in io.dapr.client
-
-
Generic Client Adapter to be used regardless of the GRPC or the HTTP Client implementation required.
-
-
DaprClientBuilder - Class in io.dapr.client
+
DaprAppCallbackProtos.TopicEventRequest - Class in io.dapr.v1
+
+
+ TopicEventRequest message is compatible with CloudEvent spec v1.0 + https://github.com/cloudevents/spec/blob/v1.0/spec.md
+
+
DaprAppCallbackProtos.TopicEventRequest.Builder - Class in io.dapr.v1
+
+
+ TopicEventRequest message is compatible with CloudEvent spec v1.0 + https://github.com/cloudevents/spec/blob/v1.0/spec.md
+
+
DaprAppCallbackProtos.TopicEventRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicEventResponse - Class in io.dapr.v1
+
+
+ TopicEventResponse is response from app on published message
+
+
DaprAppCallbackProtos.TopicEventResponse.Builder - Class in io.dapr.v1
+
+
+ TopicEventResponse is response from app on published message
+
+
DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus - Enum in io.dapr.v1
+
+
+ TopicEventResponseStatus allows apps to have finer control over handling of the message.
+
+
DaprAppCallbackProtos.TopicEventResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicRoutes - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TopicRoutes
+
+
DaprAppCallbackProtos.TopicRoutes.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TopicRoutes
+
+
DaprAppCallbackProtos.TopicRoutesOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicRule - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TopicRule
+
+
DaprAppCallbackProtos.TopicRule.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TopicRule
+
+
DaprAppCallbackProtos.TopicRuleOrBuilder - Interface in io.dapr.v1
+
 
+
DaprAppCallbackProtos.TopicSubscription - Class in io.dapr.v1
+
+
+ TopicSubscription represents topic and metadata.
+
+
DaprAppCallbackProtos.TopicSubscription.Builder - Class in io.dapr.v1
+
+
+ TopicSubscription represents topic and metadata.
+
+
DaprAppCallbackProtos.TopicSubscriptionOrBuilder - Interface in io.dapr.v1
+
 
+
DaprClient - Interface in io.dapr.client
+
+
Generic Client Adapter to be used regardless of the GRPC or the HTTP Client implementation required.
+
+
DaprClientBuilder - Class in io.dapr.client
A builder for the DaprClient, Currently only gRPC and HTTP Client will be supported.
-
DaprClientBuilder() - Constructor for class io.dapr.client.DaprClientBuilder
+
DaprClientBuilder() - Constructor for class io.dapr.client.DaprClientBuilder
Creates a constructor for DaprClient.
-
DaprClientGrpc - Class in io.dapr.client
+
DaprClientGrpc - Class in io.dapr.client
An adapter for the GRPC Client.
-
DaprClientHttp - Class in io.dapr.client
+
DaprClientHttp - Class in io.dapr.client
-
An adapter for the HTTP Client.
+
Deprecated. +
This class will be deleted at SDK release version 1.10.
+
-
DaprError - Class in io.dapr.exceptions
+
DaprError - Class in io.dapr.exceptions
Represents an error message from Dapr.
-
DaprError() - Constructor for class io.dapr.exceptions.DaprError
+
DaprError() - Constructor for class io.dapr.exceptions.DaprError
 
-
DaprException - Exception in io.dapr.exceptions
+
DaprException - Exception in io.dapr.exceptions
A Dapr's specific exception.
-
DaprException(DaprError) - Constructor for exception io.dapr.exceptions.DaprException
+
DaprException(DaprError) - Constructor for exception io.dapr.exceptions.DaprException
New exception from a server-side generated error code and message.
-
DaprException(DaprError, Throwable) - Constructor for exception io.dapr.exceptions.DaprException
+
DaprException(DaprError, Throwable) - Constructor for exception io.dapr.exceptions.DaprException
New exception from a server-side generated error code and message.
-
DaprException(String, String) - Constructor for exception io.dapr.exceptions.DaprException
+
DaprException(String, String) - Constructor for exception io.dapr.exceptions.DaprException
New Exception from a client-side generated error code and message.
-
DaprException(String, String, Throwable) - Constructor for exception io.dapr.exceptions.DaprException
+
DaprException(String, String, Throwable) - Constructor for exception io.dapr.exceptions.DaprException
New exception from a server-side generated error code and message.
-
DaprException(Throwable) - Constructor for exception io.dapr.exceptions.DaprException
+
DaprException(Throwable) - Constructor for exception io.dapr.exceptions.DaprException
Wraps an exception into a DaprException.
-
DaprGrpc - Class in io.dapr.v1
+
DaprGrpc - Class in io.dapr.v1
Dapr service provides APIs to user application to access Dapr building blocks.
-
DaprGrpc.DaprBlockingStub - Class in io.dapr.v1
+
DaprGrpc.DaprBlockingStub - Class in io.dapr.v1
Dapr service provides APIs to user application to access Dapr building blocks.
-
DaprGrpc.DaprFutureStub - Class in io.dapr.v1
+
DaprGrpc.DaprFutureStub - Class in io.dapr.v1
Dapr service provides APIs to user application to access Dapr building blocks.
-
DaprGrpc.DaprImplBase - Class in io.dapr.v1
+
DaprGrpc.DaprImplBase - Class in io.dapr.v1
Dapr service provides APIs to user application to access Dapr building blocks.
-
DaprGrpc.DaprStub - Class in io.dapr.v1
+
DaprGrpc.DaprStub - Class in io.dapr.v1
Dapr service provides APIs to user application to access Dapr building blocks.
-
DaprHttp - Class in io.dapr.client
+
DaprHttp - Class in io.dapr.client
 
-
DaprHttp.HttpMethods - Enum Class in io.dapr.client
+
DaprHttp.HttpMethods - Enum in io.dapr.client
HTTP Methods supported.
-
DaprHttp.Response - Class in io.dapr.client
+
DaprHttp.Response - Class in io.dapr.client
 
-
DaprHttpBuilder - Class in io.dapr.client
+
DaprHttpBuilder - Class in io.dapr.client
-
A builder for the DaprHttp.
+
Deprecated. +
Use DaprClientBuilder instead, this will be removed in a future release.
+
-
DaprHttpBuilder() - Constructor for class io.dapr.client.DaprHttpBuilder
-
 
-
DaprImplBase() - Constructor for class io.dapr.v1.DaprGrpc.DaprImplBase
+
DaprHttpBuilder() - Constructor for class io.dapr.client.DaprHttpBuilder
+
+
Deprecated.
+
DaprImplBase() - Constructor for class io.dapr.v1.DaprGrpc.DaprImplBase
 
-
DaprObjectSerializer - Interface in io.dapr.serializer
+
DaprObjectSerializer - Interface in io.dapr.serializer
Serializes and deserializes application's objects.
-
DaprPreviewClient - Interface in io.dapr.client
+
DaprPreviewClient - Interface in io.dapr.client
Generic client interface for preview or alpha APIs in Dapr, regardless of GRPC or HTTP.
-
DaprProtos - Class in io.dapr.v1
+
DaprProtos - Class in io.dapr.v1
 
-
DaprProtos.ActiveActorsCount - Class in io.dapr.v1
+
DaprProtos.ActiveActorsCount - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.ActiveActorsCount
-
DaprProtos.ActiveActorsCount.Builder - Class in io.dapr.v1
+
DaprProtos.ActiveActorsCount.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.ActiveActorsCount
-
DaprProtos.ActiveActorsCountOrBuilder - Interface in io.dapr.v1
+
DaprProtos.ActiveActorsCountOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.BulkPublishRequest - Class in io.dapr.v1
+
+
+ BulkPublishRequest is the message to bulk publish events to pubsub topic
+
+
DaprProtos.BulkPublishRequest.Builder - Class in io.dapr.v1
+
+
+ BulkPublishRequest is the message to bulk publish events to pubsub topic
+
+
DaprProtos.BulkPublishRequestEntry - Class in io.dapr.v1
+
+
+ BulkPublishRequestEntry is the message containing the event to be bulk published
+
+
DaprProtos.BulkPublishRequestEntry.Builder - Class in io.dapr.v1
+
+
+ BulkPublishRequestEntry is the message containing the event to be bulk published
+
+
DaprProtos.BulkPublishRequestEntryOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.BulkPublishRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.BulkPublishResponse - Class in io.dapr.v1
+
+
+ BulkPublishResponse is the message returned from a BulkPublishEvent call
+
+
DaprProtos.BulkPublishResponse.Builder - Class in io.dapr.v1
+
+
+ BulkPublishResponse is the message returned from a BulkPublishEvent call
+
+
DaprProtos.BulkPublishResponseFailedEntry - Class in io.dapr.v1
+
+
+ BulkPublishResponseFailedEntry is the message containing the entryID and error of a failed event in BulkPublishEvent call
+
+
DaprProtos.BulkPublishResponseFailedEntry.Builder - Class in io.dapr.v1
+
+
+ BulkPublishResponseFailedEntry is the message containing the entryID and error of a failed event in BulkPublishEvent call
+
+
DaprProtos.BulkPublishResponseFailedEntryOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.BulkPublishResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.BulkStateItem - Class in io.dapr.v1
+
DaprProtos.BulkStateItem - Class in io.dapr.v1
BulkStateItem is the response item for a bulk get operation.
-
DaprProtos.BulkStateItem.Builder - Class in io.dapr.v1
+
DaprProtos.BulkStateItem.Builder - Class in io.dapr.v1
BulkStateItem is the response item for a bulk get operation.
-
DaprProtos.BulkStateItemOrBuilder - Interface in io.dapr.v1
+
DaprProtos.BulkStateItemOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.DeleteBulkStateRequest - Class in io.dapr.v1
+
DaprProtos.DeleteBulkStateRequest - Class in io.dapr.v1
DeleteBulkStateRequest is the message to delete a list of key-value states from specific state store.
-
DaprProtos.DeleteBulkStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.DeleteBulkStateRequest.Builder - Class in io.dapr.v1
DeleteBulkStateRequest is the message to delete a list of key-value states from specific state store.
-
DaprProtos.DeleteBulkStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.DeleteBulkStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.DeleteStateRequest - Class in io.dapr.v1
+
DaprProtos.DeleteStateRequest - Class in io.dapr.v1
DeleteStateRequest is the message to delete key-value states in the specific state store.
-
DaprProtos.DeleteStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.DeleteStateRequest.Builder - Class in io.dapr.v1
DeleteStateRequest is the message to delete key-value states in the specific state store.
-
DaprProtos.DeleteStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.DeleteStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.ExecuteActorStateTransactionRequest - Class in io.dapr.v1
+
DaprProtos.ExecuteActorStateTransactionRequest - Class in io.dapr.v1
ExecuteActorStateTransactionRequest is the message to execute multiple operations on a specified actor.
-
DaprProtos.ExecuteActorStateTransactionRequest.Builder - Class in io.dapr.v1
+
DaprProtos.ExecuteActorStateTransactionRequest.Builder - Class in io.dapr.v1
ExecuteActorStateTransactionRequest is the message to execute multiple operations on a specified actor.
-
DaprProtos.ExecuteActorStateTransactionRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.ExecuteActorStateTransactionRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.ExecuteStateTransactionRequest - Class in io.dapr.v1
+
DaprProtos.ExecuteStateTransactionRequest - Class in io.dapr.v1
ExecuteStateTransactionRequest is the message to execute multiple operations on a specified store.
-
DaprProtos.ExecuteStateTransactionRequest.Builder - Class in io.dapr.v1
+
DaprProtos.ExecuteStateTransactionRequest.Builder - Class in io.dapr.v1
ExecuteStateTransactionRequest is the message to execute multiple operations on a specified store.
-
DaprProtos.ExecuteStateTransactionRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.ExecuteStateTransactionRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetActorStateRequest - Class in io.dapr.v1
+
DaprProtos.GetActorStateRequest - Class in io.dapr.v1
GetActorStateRequest is the message to get key-value states from specific actor.
-
DaprProtos.GetActorStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetActorStateRequest.Builder - Class in io.dapr.v1
GetActorStateRequest is the message to get key-value states from specific actor.
-
DaprProtos.GetActorStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetActorStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetActorStateResponse - Class in io.dapr.v1
+
DaprProtos.GetActorStateResponse - Class in io.dapr.v1
GetActorStateResponse is the response conveying the actor's state value.
-
DaprProtos.GetActorStateResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetActorStateResponse.Builder - Class in io.dapr.v1
GetActorStateResponse is the response conveying the actor's state value.
-
DaprProtos.GetActorStateResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetActorStateResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetBulkSecretRequest - Class in io.dapr.v1
+
DaprProtos.GetBulkSecretRequest - Class in io.dapr.v1
GetBulkSecretRequest is the message to get the secrets from secret store.
-
DaprProtos.GetBulkSecretRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetBulkSecretRequest.Builder - Class in io.dapr.v1
GetBulkSecretRequest is the message to get the secrets from secret store.
-
DaprProtos.GetBulkSecretRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetBulkSecretRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetBulkSecretResponse - Class in io.dapr.v1
+
DaprProtos.GetBulkSecretResponse - Class in io.dapr.v1
GetBulkSecretResponse is the response message to convey the requested secrets.
-
DaprProtos.GetBulkSecretResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetBulkSecretResponse.Builder - Class in io.dapr.v1
GetBulkSecretResponse is the response message to convey the requested secrets.
-
DaprProtos.GetBulkSecretResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetBulkSecretResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetBulkStateRequest - Class in io.dapr.v1
+
DaprProtos.GetBulkStateRequest - Class in io.dapr.v1
GetBulkStateRequest is the message to get a list of key-value states from specific state store.
-
DaprProtos.GetBulkStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetBulkStateRequest.Builder - Class in io.dapr.v1
GetBulkStateRequest is the message to get a list of key-value states from specific state store.
-
DaprProtos.GetBulkStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetBulkStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetBulkStateResponse - Class in io.dapr.v1
+
DaprProtos.GetBulkStateResponse - Class in io.dapr.v1
GetBulkStateResponse is the response conveying the list of state values.
-
DaprProtos.GetBulkStateResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetBulkStateResponse.Builder - Class in io.dapr.v1
GetBulkStateResponse is the response conveying the list of state values.
-
DaprProtos.GetBulkStateResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetBulkStateResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetConfigurationRequest - Class in io.dapr.v1
+
DaprProtos.GetConfigurationRequest - Class in io.dapr.v1
GetConfigurationRequest is the message to get a list of key-value configuration from specified configuration store.
-
DaprProtos.GetConfigurationRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetConfigurationRequest.Builder - Class in io.dapr.v1
GetConfigurationRequest is the message to get a list of key-value configuration from specified configuration store.
-
DaprProtos.GetConfigurationRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetConfigurationRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetConfigurationResponse - Class in io.dapr.v1
+
DaprProtos.GetConfigurationResponse - Class in io.dapr.v1
GetConfigurationResponse is the response conveying the list of configuration values.
-
DaprProtos.GetConfigurationResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetConfigurationResponse.Builder - Class in io.dapr.v1
GetConfigurationResponse is the response conveying the list of configuration values.
-
DaprProtos.GetConfigurationResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetConfigurationResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetMetadataResponse - Class in io.dapr.v1
+
DaprProtos.GetMetadataResponse - Class in io.dapr.v1
GetMetadataResponse is a message that is returned on GetMetadata rpc call
-
DaprProtos.GetMetadataResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetMetadataResponse.Builder - Class in io.dapr.v1
GetMetadataResponse is a message that is returned on GetMetadata rpc call
-
DaprProtos.GetMetadataResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetMetadataResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetSecretRequest - Class in io.dapr.v1
+
DaprProtos.GetSecretRequest - Class in io.dapr.v1
GetSecretRequest is the message to get secret from secret store.
-
DaprProtos.GetSecretRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetSecretRequest.Builder - Class in io.dapr.v1
GetSecretRequest is the message to get secret from secret store.
-
DaprProtos.GetSecretRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetSecretRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetSecretResponse - Class in io.dapr.v1
+
DaprProtos.GetSecretResponse - Class in io.dapr.v1
GetSecretResponse is the response message to convey the requested secret.
-
DaprProtos.GetSecretResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetSecretResponse.Builder - Class in io.dapr.v1
GetSecretResponse is the response message to convey the requested secret.
-
DaprProtos.GetSecretResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetSecretResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetStateRequest - Class in io.dapr.v1
+
DaprProtos.GetStateRequest - Class in io.dapr.v1
GetStateRequest is the message to get key-value states from specific state store.
-
DaprProtos.GetStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.GetStateRequest.Builder - Class in io.dapr.v1
GetStateRequest is the message to get key-value states from specific state store.
-
DaprProtos.GetStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.GetStateResponse - Class in io.dapr.v1
+
DaprProtos.GetStateResponse - Class in io.dapr.v1
GetStateResponse is the response conveying the state value and etag.
-
DaprProtos.GetStateResponse.Builder - Class in io.dapr.v1
+
DaprProtos.GetStateResponse.Builder - Class in io.dapr.v1
GetStateResponse is the response conveying the state value and etag.
-
DaprProtos.GetStateResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.GetStateResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.GetWorkflowRequest - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.GetWorkflowRequest
+
+
DaprProtos.GetWorkflowRequest.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.GetWorkflowRequest
+
+
DaprProtos.GetWorkflowRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.GetWorkflowResponse - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.GetWorkflowResponse
+
+
DaprProtos.GetWorkflowResponse.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.GetWorkflowResponse
+
+
DaprProtos.GetWorkflowResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.InvokeActorRequest - Class in io.dapr.v1
+
DaprProtos.InvokeActorRequest - Class in io.dapr.v1
InvokeActorRequest is the message to call an actor.
-
DaprProtos.InvokeActorRequest.Builder - Class in io.dapr.v1
+
DaprProtos.InvokeActorRequest.Builder - Class in io.dapr.v1
InvokeActorRequest is the message to call an actor.
-
DaprProtos.InvokeActorRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.InvokeActorRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.InvokeActorResponse - Class in io.dapr.v1
+
DaprProtos.InvokeActorResponse - Class in io.dapr.v1
InvokeActorResponse is the method that returns an actor invocation response.
-
DaprProtos.InvokeActorResponse.Builder - Class in io.dapr.v1
+
DaprProtos.InvokeActorResponse.Builder - Class in io.dapr.v1
InvokeActorResponse is the method that returns an actor invocation response.
-
DaprProtos.InvokeActorResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.InvokeActorResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.InvokeBindingRequest - Class in io.dapr.v1
+
DaprProtos.InvokeBindingRequest - Class in io.dapr.v1
InvokeBindingRequest is the message to send data to output bindings
-
DaprProtos.InvokeBindingRequest.Builder - Class in io.dapr.v1
+
DaprProtos.InvokeBindingRequest.Builder - Class in io.dapr.v1
InvokeBindingRequest is the message to send data to output bindings
-
DaprProtos.InvokeBindingRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.InvokeBindingRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.InvokeBindingResponse - Class in io.dapr.v1
+
DaprProtos.InvokeBindingResponse - Class in io.dapr.v1
InvokeBindingResponse is the message returned from an output binding invocation
-
DaprProtos.InvokeBindingResponse.Builder - Class in io.dapr.v1
+
DaprProtos.InvokeBindingResponse.Builder - Class in io.dapr.v1
InvokeBindingResponse is the message returned from an output binding invocation
-
DaprProtos.InvokeBindingResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.InvokeBindingResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.InvokeServiceRequest - Class in io.dapr.v1
+
DaprProtos.InvokeServiceRequest - Class in io.dapr.v1
InvokeServiceRequest represents the request message for Service invocation.
-
DaprProtos.InvokeServiceRequest.Builder - Class in io.dapr.v1
+
DaprProtos.InvokeServiceRequest.Builder - Class in io.dapr.v1
InvokeServiceRequest represents the request message for Service invocation.
-
DaprProtos.InvokeServiceRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.InvokeServiceRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.PublishEventRequest - Class in io.dapr.v1
+
DaprProtos.PublishEventRequest - Class in io.dapr.v1
PublishEventRequest is the message to publish event data to pubsub topic
-
DaprProtos.PublishEventRequest.Builder - Class in io.dapr.v1
+
DaprProtos.PublishEventRequest.Builder - Class in io.dapr.v1
PublishEventRequest is the message to publish event data to pubsub topic
-
DaprProtos.PublishEventRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.PublishEventRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.PubsubSubscription - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscription
+
+
DaprProtos.PubsubSubscription.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscription
+
+
DaprProtos.PubsubSubscriptionOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.PubsubSubscriptionRule - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscriptionRule
+
+
DaprProtos.PubsubSubscriptionRule.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscriptionRule
+
+
DaprProtos.PubsubSubscriptionRuleOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.PubsubSubscriptionRules - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscriptionRules
+
+
DaprProtos.PubsubSubscriptionRules.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.PubsubSubscriptionRules
+
+
DaprProtos.PubsubSubscriptionRulesOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.QueryStateItem - Class in io.dapr.v1
+
DaprProtos.QueryStateItem - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.QueryStateItem
-
DaprProtos.QueryStateItem.Builder - Class in io.dapr.v1
+
DaprProtos.QueryStateItem.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.QueryStateItem
-
DaprProtos.QueryStateItemOrBuilder - Interface in io.dapr.v1
+
DaprProtos.QueryStateItemOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.QueryStateRequest - Class in io.dapr.v1
+
DaprProtos.QueryStateRequest - Class in io.dapr.v1
QueryStateRequest is the message to query state store.
-
DaprProtos.QueryStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.QueryStateRequest.Builder - Class in io.dapr.v1
QueryStateRequest is the message to query state store.
-
DaprProtos.QueryStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.QueryStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.QueryStateResponse - Class in io.dapr.v1
+
DaprProtos.QueryStateResponse - Class in io.dapr.v1
QueryStateResponse is the response conveying the query results.
-
DaprProtos.QueryStateResponse.Builder - Class in io.dapr.v1
+
DaprProtos.QueryStateResponse.Builder - Class in io.dapr.v1
QueryStateResponse is the response conveying the query results.
-
DaprProtos.QueryStateResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.QueryStateResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.RegisterActorReminderRequest - Class in io.dapr.v1
+
DaprProtos.RegisterActorReminderRequest - Class in io.dapr.v1
RegisterActorReminderRequest is the message to register a reminder for an actor of a given type and id.
-
DaprProtos.RegisterActorReminderRequest.Builder - Class in io.dapr.v1
+
DaprProtos.RegisterActorReminderRequest.Builder - Class in io.dapr.v1
RegisterActorReminderRequest is the message to register a reminder for an actor of a given type and id.
-
DaprProtos.RegisterActorReminderRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.RegisterActorReminderRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.RegisterActorTimerRequest - Class in io.dapr.v1
+
DaprProtos.RegisterActorTimerRequest - Class in io.dapr.v1
RegisterActorTimerRequest is the message to register a timer for an actor of a given type and id.
-
DaprProtos.RegisterActorTimerRequest.Builder - Class in io.dapr.v1
+
DaprProtos.RegisterActorTimerRequest.Builder - Class in io.dapr.v1
RegisterActorTimerRequest is the message to register a timer for an actor of a given type and id.
-
DaprProtos.RegisterActorTimerRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.RegisterActorTimerRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.RegisteredComponents - Class in io.dapr.v1
+
DaprProtos.RegisteredComponents - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.RegisteredComponents
-
DaprProtos.RegisteredComponents.Builder - Class in io.dapr.v1
+
DaprProtos.RegisteredComponents.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.RegisteredComponents
-
DaprProtos.RegisteredComponentsOrBuilder - Interface in io.dapr.v1
+
DaprProtos.RegisteredComponentsOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.RenameActorReminderRequest - Class in io.dapr.v1
+
DaprProtos.RenameActorReminderRequest - Class in io.dapr.v1
RenameActorReminderRequest is the message to rename an actor reminder.
-
DaprProtos.RenameActorReminderRequest.Builder - Class in io.dapr.v1
+
DaprProtos.RenameActorReminderRequest.Builder - Class in io.dapr.v1
RenameActorReminderRequest is the message to rename an actor reminder.
-
DaprProtos.RenameActorReminderRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.RenameActorReminderRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.SaveStateRequest - Class in io.dapr.v1
+
DaprProtos.SaveStateRequest - Class in io.dapr.v1
SaveStateRequest is the message to save multiple states into state store.
-
DaprProtos.SaveStateRequest.Builder - Class in io.dapr.v1
+
DaprProtos.SaveStateRequest.Builder - Class in io.dapr.v1
SaveStateRequest is the message to save multiple states into state store.
-
DaprProtos.SaveStateRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.SaveStateRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.SecretResponse - Class in io.dapr.v1
+
DaprProtos.SecretResponse - Class in io.dapr.v1
SecretResponse is a map of decrypted string/string values
-
DaprProtos.SecretResponse.Builder - Class in io.dapr.v1
+
DaprProtos.SecretResponse.Builder - Class in io.dapr.v1
SecretResponse is a map of decrypted string/string values
-
DaprProtos.SecretResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.SecretResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.SetMetadataRequest - Class in io.dapr.v1
+
DaprProtos.SetMetadataRequest - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.SetMetadataRequest
-
DaprProtos.SetMetadataRequest.Builder - Class in io.dapr.v1
+
DaprProtos.SetMetadataRequest.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.SetMetadataRequest
-
DaprProtos.SetMetadataRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.SetMetadataRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.StartWorkflowRequest - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.StartWorkflowRequest
+
+
DaprProtos.StartWorkflowRequest.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.StartWorkflowRequest
+
+
DaprProtos.StartWorkflowRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.SubscribeConfigurationRequest - Class in io.dapr.v1
+
DaprProtos.SubscribeConfigurationRequest - Class in io.dapr.v1
SubscribeConfigurationRequest is the message to get a list of key-value configuration from specified configuration store.
-
DaprProtos.SubscribeConfigurationRequest.Builder - Class in io.dapr.v1
+
DaprProtos.SubscribeConfigurationRequest.Builder - Class in io.dapr.v1
SubscribeConfigurationRequest is the message to get a list of key-value configuration from specified configuration store.
-
DaprProtos.SubscribeConfigurationRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.SubscribeConfigurationRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.SubscribeConfigurationResponse - Class in io.dapr.v1
+
DaprProtos.SubscribeConfigurationResponse - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.SubscribeConfigurationResponse
-
DaprProtos.SubscribeConfigurationResponse.Builder - Class in io.dapr.v1
+
DaprProtos.SubscribeConfigurationResponse.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.SubscribeConfigurationResponse
-
DaprProtos.SubscribeConfigurationResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.SubscribeConfigurationResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.TransactionalActorStateOperation - Class in io.dapr.v1
+
DaprProtos.TerminateWorkflowRequest - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TerminateWorkflowRequest
+
+
DaprProtos.TerminateWorkflowRequest.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TerminateWorkflowRequest
+
+
DaprProtos.TerminateWorkflowRequestOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.TerminateWorkflowResponse - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TerminateWorkflowResponse
+
+
DaprProtos.TerminateWorkflowResponse.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.TerminateWorkflowResponse
+
+
DaprProtos.TerminateWorkflowResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.TransactionalActorStateOperation - Class in io.dapr.v1
TransactionalActorStateOperation is the message to execute a specified operation with a key-value pair.
-
DaprProtos.TransactionalActorStateOperation.Builder - Class in io.dapr.v1
+
DaprProtos.TransactionalActorStateOperation.Builder - Class in io.dapr.v1
TransactionalActorStateOperation is the message to execute a specified operation with a key-value pair.
-
DaprProtos.TransactionalActorStateOperationOrBuilder - Interface in io.dapr.v1
+
DaprProtos.TransactionalActorStateOperationOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.TransactionalStateOperation - Class in io.dapr.v1
+
DaprProtos.TransactionalStateOperation - Class in io.dapr.v1
TransactionalStateOperation is the message to execute a specified operation with a key-value pair.
-
DaprProtos.TransactionalStateOperation.Builder - Class in io.dapr.v1
+
DaprProtos.TransactionalStateOperation.Builder - Class in io.dapr.v1
TransactionalStateOperation is the message to execute a specified operation with a key-value pair.
-
DaprProtos.TransactionalStateOperationOrBuilder - Interface in io.dapr.v1
+
DaprProtos.TransactionalStateOperationOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.TryLockRequest - Class in io.dapr.v1
+
DaprProtos.TryLockRequest - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.TryLockRequest
-
DaprProtos.TryLockRequest.Builder - Class in io.dapr.v1
+
DaprProtos.TryLockRequest.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.TryLockRequest
-
DaprProtos.TryLockRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.TryLockRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.TryLockResponse - Class in io.dapr.v1
+
DaprProtos.TryLockResponse - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.TryLockResponse
-
DaprProtos.TryLockResponse.Builder - Class in io.dapr.v1
+
DaprProtos.TryLockResponse.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.TryLockResponse
-
DaprProtos.TryLockResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.TryLockResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnlockRequest - Class in io.dapr.v1
+
DaprProtos.UnlockRequest - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnlockRequest
-
DaprProtos.UnlockRequest.Builder - Class in io.dapr.v1
+
DaprProtos.UnlockRequest.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnlockRequest
-
DaprProtos.UnlockRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnlockRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnlockResponse - Class in io.dapr.v1
+
DaprProtos.UnlockResponse - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnlockResponse
-
DaprProtos.UnlockResponse.Builder - Class in io.dapr.v1
+
DaprProtos.UnlockResponse.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnlockResponse
-
DaprProtos.UnlockResponse.Status - Enum Class in io.dapr.v1
+
DaprProtos.UnlockResponse.Status - Enum in io.dapr.v1
Protobuf enum dapr.proto.runtime.v1.UnlockResponse.Status
-
DaprProtos.UnlockResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnlockResponseOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnregisterActorReminderRequest - Class in io.dapr.v1
+
DaprProtos.UnregisterActorReminderRequest - Class in io.dapr.v1
UnregisterActorReminderRequest is the message to unregister an actor reminder.
-
DaprProtos.UnregisterActorReminderRequest.Builder - Class in io.dapr.v1
+
DaprProtos.UnregisterActorReminderRequest.Builder - Class in io.dapr.v1
UnregisterActorReminderRequest is the message to unregister an actor reminder.
-
DaprProtos.UnregisterActorReminderRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnregisterActorReminderRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnregisterActorTimerRequest - Class in io.dapr.v1
+
DaprProtos.UnregisterActorTimerRequest - Class in io.dapr.v1
UnregisterActorTimerRequest is the message to unregister an actor timer
-
DaprProtos.UnregisterActorTimerRequest.Builder - Class in io.dapr.v1
+
DaprProtos.UnregisterActorTimerRequest.Builder - Class in io.dapr.v1
UnregisterActorTimerRequest is the message to unregister an actor timer
-
DaprProtos.UnregisterActorTimerRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnregisterActorTimerRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnsubscribeConfigurationRequest - Class in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationRequest - Class in io.dapr.v1
UnSubscribeConfigurationRequest is the message to stop watching the key-value configuration.
-
DaprProtos.UnsubscribeConfigurationRequest.Builder - Class in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationRequest.Builder - Class in io.dapr.v1
UnSubscribeConfigurationRequest is the message to stop watching the key-value configuration.
-
DaprProtos.UnsubscribeConfigurationRequestOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationRequestOrBuilder - Interface in io.dapr.v1
 
-
DaprProtos.UnsubscribeConfigurationResponse - Class in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationResponse - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnsubscribeConfigurationResponse
-
DaprProtos.UnsubscribeConfigurationResponse.Builder - Class in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationResponse.Builder - Class in io.dapr.v1
Protobuf type dapr.proto.runtime.v1.UnsubscribeConfigurationResponse
-
DaprProtos.UnsubscribeConfigurationResponseOrBuilder - Interface in io.dapr.v1
+
DaprProtos.UnsubscribeConfigurationResponseOrBuilder - Interface in io.dapr.v1
+
 
+
DaprProtos.WorkflowReference - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.WorkflowReference
+
+
DaprProtos.WorkflowReference.Builder - Class in io.dapr.v1
+
+
Protobuf type dapr.proto.runtime.v1.WorkflowReference
+
+
DaprProtos.WorkflowReferenceOrBuilder - Interface in io.dapr.v1
+
 
+
DATA_CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
DATA_CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
DATA_CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
DATA_CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
DATA_CONTENT_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StreamPayload
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
deactivate(String, String) - Method in class io.dapr.actors.runtime.ActorRuntime
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
DATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
deactivate(String, String) - Method in class io.dapr.actors.runtime.ActorRuntime
Deactivates an actor for an actor type with given actor id.
-
DEAD_LETTER_TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
DEAD_LETTER_TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
DEAD_LETTER_TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
DEFAULT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
DEFAULT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
DefaultContentTypeConverter - Class in io.dapr.utils
+
+
A utility class for converting event to bytes based on content type or given serializer.
+
+
DefaultContentTypeConverter() - Constructor for class io.dapr.utils.DefaultContentTypeConverter
 
-
DefaultObjectSerializer - Class in io.dapr.serializer
+
DefaultObjectSerializer - Class in io.dapr.serializer
Default serializer/deserializer for request/response objects and for state objects too.
-
DefaultObjectSerializer() - Constructor for class io.dapr.serializer.DefaultObjectSerializer
+
DefaultObjectSerializer() - Constructor for class io.dapr.serializer.DefaultObjectSerializer
 
-
DELETE - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
DELETE - io.dapr.client.DaprHttp.HttpMethods
 
-
DELETE - Enum constant in enum class io.dapr.client.domain.TransactionalStateOperation.OperationType
+
DELETE - io.dapr.client.domain.TransactionalStateOperation.OperationType
 
-
DELETE - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
DELETE - io.dapr.v1.CommonProtos.HTTPExtension.Verb
DELETE = 5;
-
DELETE - Static variable in class io.dapr.client.domain.HttpExtension
+
DELETE - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.DELETE Verb with empty queryString.
-
DELETE_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
DELETE_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
DELETE = 5;
-
deleteBulkState(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
deleteBulkState(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Deletes a bulk of state items for a list of keys
-
deleteBulkState(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
deleteBulkState(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Deletes a bulk of state items for a list of keys
-
deleteBulkState(DaprProtos.DeleteBulkStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
deleteBulkState(DaprProtos.DeleteBulkStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Deletes a bulk of state items for a list of keys
-
deleteBulkState(DaprProtos.DeleteBulkStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
deleteBulkState(DaprProtos.DeleteBulkStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Deletes a bulk of state items for a list of keys
-
deleteState(DeleteStateRequest) - Method in interface io.dapr.client.DaprClient
+
deleteState(DeleteStateRequest) - Method in interface io.dapr.client.DaprClient
Delete a state.
-
deleteState(DeleteStateRequest) - Method in class io.dapr.client.DaprClientGrpc
+
deleteState(DeleteStateRequest) - Method in class io.dapr.client.DaprClientGrpc
Delete a state.
-
deleteState(DeleteStateRequest) - Method in class io.dapr.client.DaprClientHttp
+
deleteState(DeleteStateRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Delete a state.
-
deleteState(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
deleteState(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Deletes the state for a specific key.
-
deleteState(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
deleteState(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Deletes the state for a specific key.
-
deleteState(DaprProtos.DeleteStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
deleteState(DaprProtos.DeleteStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Deletes the state for a specific key.
-
deleteState(DaprProtos.DeleteStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
deleteState(DaprProtos.DeleteStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Deletes the state for a specific key.
-
deleteState(String, String) - Method in class io.dapr.client.DaprClientGrpc
-
-
Delete a state.
-
-
deleteState(String, String) - Method in interface io.dapr.client.DaprClient
-
-
Delete a state.
-
-
deleteState(String, String, String, StateOptions) - Method in class io.dapr.client.DaprClientGrpc
+
deleteState(String, String) - Method in interface io.dapr.client.DaprClient
Delete a state.
-
deleteState(String, String, String, StateOptions) - Method in interface io.dapr.client.DaprClient
+
deleteState(String, String, String, StateOptions) - Method in interface io.dapr.client.DaprClient
Delete a state.
-
DeleteStateRequest - Class in io.dapr.client.domain
+
DeleteStateRequest - Class in io.dapr.client.domain
A request to delete a state by key.
-
DeleteStateRequest(String, String) - Constructor for class io.dapr.client.domain.DeleteStateRequest
+
DeleteStateRequest(String, String) - Constructor for class io.dapr.client.domain.DeleteStateRequest
Constructor for DeleteStateRequest.
-
DESC - Enum constant in enum class io.dapr.client.domain.query.Sorting.Order
+
DESC - io.dapr.client.domain.query.Sorting.Order
 
-
deserialize(byte[]) - Static method in class io.dapr.client.domain.CloudEvent
+
deserialize(byte[]) - Static method in class io.dapr.client.domain.CloudEvent
Deserialize a message topic from Dapr.
-
deserialize(byte[], TypeRef<T>) - Method in class io.dapr.client.ObjectSerializer
+
deserialize(byte[], TypeRef<T>) - Method in class io.dapr.client.ObjectSerializer
Deserializes the byte array into the original object.
-
deserialize(byte[], TypeRef<T>) - Method in interface io.dapr.serializer.DaprObjectSerializer
+
deserialize(byte[], TypeRef<T>) - Method in interface io.dapr.serializer.DaprObjectSerializer
Deserializes the given byte[] into a object.
-
deserialize(byte[], TypeRef<T>) - Method in class io.dapr.serializer.DefaultObjectSerializer
+
deserialize(byte[], TypeRef<T>) - Method in class io.dapr.serializer.DefaultObjectSerializer
Deserializes the byte array into the original object.
-
deserialize(byte[], Class<T>) - Method in class io.dapr.actors.runtime.ActorObjectSerializer
+
deserialize(byte[], Class<T>) - Method in class io.dapr.actors.runtime.ActorObjectSerializer
Deserializes the byte array into the original object.
-
deserialize(byte[], Class<T>) - Method in class io.dapr.client.ObjectSerializer
+
deserialize(byte[], Class<T>) - Method in class io.dapr.client.ObjectSerializer
Deserializes the byte array into the original object.
-
deserialize(JsonParser, DeserializationContext) - Method in class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
+
deserialize(JsonParser, DeserializationContext) - Method in class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
 
-
DOUBLE - Static variable in class io.dapr.utils.TypeRef
+
DOUBLE - Static variable in class io.dapr.utils.TypeRef
 
-
DROP - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
DROP - io.dapr.client.domain.BulkSubscribeAppResponseStatus
+
 
+
DROP - io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
DROP status signals Dapr to drop the message as part of an unexpected scenario (warning is logged).
-
DROP_VALUE - Static variable in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
DROP_VALUE - Static variable in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
DROP status signals Dapr to drop the message as part of an unexpected scenario (warning is logged).
-
DUE_TIME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
DUE_TIME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
DUE_TIME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
DUE_TIME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
DurationUtils - Class in io.dapr.utils
+
DurationUtils - Class in io.dapr.utils
 
-
DurationUtils() - Constructor for class io.dapr.utils.DurationUtils
+
DurationUtils() - Constructor for class io.dapr.utils.DurationUtils
 
-

E

-
-
encodeQueryString() - Method in class io.dapr.client.domain.HttpExtension
+ + + +

E

+
+
ENABLED_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
encodeQueryString() - Method in class io.dapr.client.domain.HttpExtension
Encodes the query string for the HTTP request.
-
EqFilter<T> - Class in io.dapr.client.domain.query.filters
+
ENTRIES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
ENTRIES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
EqFilter() - Constructor for class io.dapr.client.domain.query.filters.EqFilter
+
ENTRY_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
EqFilter(String, T) - Constructor for class io.dapr.client.domain.query.filters.EqFilter
+
ENTRY_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
equals(Object) - Method in class io.dapr.actors.ActorId
+
ENTRY_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
ENTRY_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
EqFilter<T> - Class in io.dapr.client.domain.query.filters
+
 
+
EqFilter() - Constructor for class io.dapr.client.domain.query.filters.EqFilter
+
 
+
EqFilter(String, T) - Constructor for class io.dapr.client.domain.query.filters.EqFilter
+
 
+
equals(Object) - Method in class io.dapr.actors.ActorId
Checks if this instance is equals to the other instance.
-
equals(Object) - Method in class io.dapr.client.domain.CloudEvent
-
equals(Object) - Method in class io.dapr.client.domain.QueryStateItem
+
equals(Object) - Method in class io.dapr.client.domain.CloudEvent
+
equals(Object) - Method in class io.dapr.client.domain.QueryStateItem
+
 
+
equals(Object) - Method in class io.dapr.client.domain.State
+
 
+
equals(Object) - Method in class io.dapr.client.domain.TransactionalStateOperation
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
equals(Object) - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
equals(Object) - Method in class io.dapr.client.domain.State
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
equals(Object) - Method in class io.dapr.client.domain.TransactionalStateOperation
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.Etag
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.StateItem
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
equals(Object) - Method in class io.dapr.v1.CommonProtos.StateOptions
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
equals(Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
ERROR_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
ERROR_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
EVENTUAL - Enum constant in enum class io.dapr.client.domain.StateOptions.Consistency
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
equals(Object) - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
ERROR_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
ERROR_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
ERROR_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
 
+
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
ETAG_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
EVENT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
EVENT_NOT_SET - io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
+
 
+
EVENTUAL - io.dapr.client.domain.StateOptions.Consistency
+
 
+
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Executes state transactions for a specified actor
-
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Executes state transactions for a specified actor
-
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Executes state transactions for a specified actor
-
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
executeActorStateTransaction(DaprProtos.ExecuteActorStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Executes state transactions for a specified actor
-
executeStateTransaction(ExecuteStateTransactionRequest) - Method in interface io.dapr.client.DaprClient
+
executeStateTransaction(ExecuteStateTransactionRequest) - Method in interface io.dapr.client.DaprClient
Execute a transaction.
-
executeStateTransaction(ExecuteStateTransactionRequest) - Method in class io.dapr.client.DaprClientGrpc
+
executeStateTransaction(ExecuteStateTransactionRequest) - Method in class io.dapr.client.DaprClientGrpc
Execute a transaction.
-
executeStateTransaction(ExecuteStateTransactionRequest) - Method in class io.dapr.client.DaprClientHttp
+
executeStateTransaction(ExecuteStateTransactionRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Execute a transaction.
-
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Executes transactions for a specified store
-
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Executes transactions for a specified store
-
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Executes transactions for a specified store
-
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Executes transactions for a specified store
-
executeStateTransaction(String, List<TransactionalStateOperation<?>>) - Method in class io.dapr.client.DaprClientGrpc
+
executeStateTransaction(String, List<TransactionalStateOperation<?>>) - Method in interface io.dapr.client.DaprClient
Execute a transaction.
-
executeStateTransaction(String, List<TransactionalStateOperation<?>>) - Method in interface io.dapr.client.DaprClient
-
-
Execute a transaction.
-
-
ExecuteStateTransactionRequest - Class in io.dapr.client.domain
+
ExecuteStateTransactionRequest - Class in io.dapr.client.domain
A request for executing state transaction operations.
-
ExecuteStateTransactionRequest(String) - Constructor for class io.dapr.client.domain.ExecuteStateTransactionRequest
+
ExecuteStateTransactionRequest(String) - Constructor for class io.dapr.client.domain.ExecuteStateTransactionRequest
Constructor for ExecuteStateTransactionRequest.
-
EXPIRYINSECONDS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
EXPIRYINSECONDS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
EXTENDED_METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
EXTENDED_METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
EXTENSIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
EXTENSIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-

F

-
-
Filter<T> - Class in io.dapr.client.domain.query.filters
+ + + +

F

+
+
FAILEDENTRIES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
Filter(String) - Constructor for class io.dapr.client.domain.query.filters.Filter
+
Filter<T> - Class in io.dapr.client.domain.query.filters
 
-
findActorTypeName(Class<?>) - Static method in class io.dapr.actors.ActorUtils
+
Filter(String) - Constructor for class io.dapr.client.domain.query.filters.Filter
+
 
+
findActorTypeName(Class<?>) - Static method in class io.dapr.actors.ActorUtils
Finds the actor type name for the given class or interface.
-
FIRST_WRITE - Enum constant in enum class io.dapr.client.domain.StateOptions.Concurrency
+
FIRST_WRITE - io.dapr.client.domain.StateOptions.Concurrency
+
 
+
FLOAT - Static variable in class io.dapr.utils.TypeRef
 
-
FLOAT - Static variable in class io.dapr.utils.TypeRef
+
forNumber(int) - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
 
-
forNumber(int) - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
forNumber(int) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
 
-
forNumber(int) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
forNumber(int) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
 
-
forNumber(int) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
forNumber(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
 
-
forNumber(int) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
forNumber(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
 
-
forNumber(int) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
forNumber(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
 
-
forNumber(int) - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
forNumber(int) - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
 
-
fromValue(String) - Static method in enum class io.dapr.client.domain.query.Sorting.Order
+
fromValue(String) - Static method in enum io.dapr.client.domain.query.Sorting.Order
 
-
fromValue(String) - Static method in enum class io.dapr.client.domain.StateOptions.Concurrency
+
fromValue(String) - Static method in enum io.dapr.client.domain.StateOptions.Concurrency
 
-
fromValue(String) - Static method in enum class io.dapr.client.domain.StateOptions.Consistency
+
fromValue(String) - Static method in enum io.dapr.client.domain.StateOptions.Consistency
 
-

G

-
-
GenericProperty<T> - Class in io.dapr.config
+ + + +

G

+
+
GenericProperty<T> - Class in io.dapr.config
Configuration property for any type.
-
get() - Method in class io.dapr.config.Property
+
get() - Method in class io.dapr.config.Property
Gets the value defined by system property first, then env variable or sticks to default.
-
get(Class<T>) - Static method in class io.dapr.utils.TypeRef
+
get(Class<T>) - Static method in class io.dapr.utils.TypeRef
Creates a reference to a given class type.
-
get(Type) - Static method in class io.dapr.utils.TypeRef
+
get(Type) - Static method in class io.dapr.utils.TypeRef
Creates a reference to a given class type.
-
get(String, TypeRef<T>) - Method in class io.dapr.actors.runtime.ActorStateManager
+
get(String, TypeRef<T>) - Method in class io.dapr.actors.runtime.ActorStateManager
Fetches the most recent value for the given state, including cached value.
-
get(String, Class<T>) - Method in class io.dapr.actors.runtime.ActorStateManager
+
get(String, Class<T>) - Method in class io.dapr.actors.runtime.ActorStateManager
Fetches the most recent value for the given state, including cached value.
-
GET - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
GET - io.dapr.client.DaprHttp.HttpMethods
 
-
GET - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
GET - io.dapr.v1.CommonProtos.HTTPExtension.Verb
GET = 1;
-
GET - Static variable in class io.dapr.client.domain.HttpExtension
+
GET - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.GET Verb with empty queryString.
-
GET_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
GET_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
GET = 1;
-
getActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCount(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getActiveActorsCount(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getActiveActorsCountCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getActiveActorsCountCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getActiveActorsCountList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getActiveActorsCountList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getActiveActorsCountOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getActiveActorsCountOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getActiveActorsCountOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getActiveActorsCountOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActiveActorsCountOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getActiveActorsCountOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
getActorId() - Method in interface io.dapr.actors.client.ActorProxy
+
getActorId() - Method in interface io.dapr.actors.client.ActorProxy
Returns the ActorId associated with the proxy object.
-
getActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_id = 2;
-
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getActorId() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
string actor_id = 2;
-
getActorId() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getActorId() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_id = 2;
-
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getActorIdBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
string actor_id = 2;
-
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getActorIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
string actor_id = 2;
-
getActorIdleTimeout() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
getActorIdleTimeout() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Gets the duration for Actors' timeout.
-
getActorScanInterval() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
getActorScanInterval() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Gets the duration to scan for Actors.
-
getActorState(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getActorState(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Gets the state for a specific actor.
-
getActorState(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getActorState(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Gets the state for a specific actor.
-
getActorState(DaprProtos.GetActorStateRequest, StreamObserver<DaprProtos.GetActorStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getActorState(DaprProtos.GetActorStateRequest, StreamObserver<DaprProtos.GetActorStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Gets the state for a specific actor.
-
getActorState(DaprProtos.GetActorStateRequest, StreamObserver<DaprProtos.GetActorStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getActorState(DaprProtos.GetActorStateRequest, StreamObserver<DaprProtos.GetActorStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Gets the state for a specific actor.
-
getActorStateManager() - Method in class io.dapr.actors.runtime.AbstractActor
+
getActorStateManager() - Method in class io.dapr.actors.runtime.AbstractActor
Returns the state store manager for this Actor.
-
getActorType() - Method in interface io.dapr.actors.client.ActorProxy
+
getActorType() - Method in interface io.dapr.actors.client.ActorProxy
Returns actor implementation type of the actor associated with the proxy object.
-
getActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_type = 1;
-
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getActorType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
string actor_type = 1;
-
getActorType() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getActorType() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_type = 1;
-
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getActorTypeBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
string actor_type = 1;
-
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getActorTypeBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
string actor_type = 1;
-
getAppId() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
getAppId() - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
getBinaryData() - Method in class io.dapr.client.domain.CloudEvent
+
getBinaryData() - Method in class io.dapr.client.domain.CloudEvent
Gets the cloud event's binary data.
-
getBindings(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getBindings(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
getBindings(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getBindings(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
The list of input bindings.
-
getBindings(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
+
getBindings(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
The list of input bindings.
-
getBindingsBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getBindingsBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
getBindingsBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getBindingsBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
The list of input bindings.
-
getBindingsBytes(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
+
getBindingsBytes(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
The list of input bindings.
-
getBindingsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getBindingsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
getBindingsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getBindingsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
The list of input bindings.
-
getBindingsCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
+
getBindingsCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
The list of input bindings.
-
getBindingsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getBindingsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
getBindingsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getBindingsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
The list of input bindings.
-
getBindingsList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
+
getBindingsList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
The list of input bindings.
-
getBody() - Method in class io.dapr.client.DaprHttp.Response
+
getBody() - Method in class io.dapr.client.DaprHttp.Response
+
 
+
getBody() - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
getBody() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
getBulkPublishEventAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
 
-
getBulkSecret(GetBulkSecretRequest) - Method in interface io.dapr.client.DaprClient
+
getBulkSecret(GetBulkSecretRequest) - Method in interface io.dapr.client.DaprClient
Fetches all secrets from the configured vault.
-
getBulkSecret(GetBulkSecretRequest) - Method in class io.dapr.client.DaprClientGrpc
+
getBulkSecret(GetBulkSecretRequest) - Method in class io.dapr.client.DaprClientGrpc
Fetches all secrets from the configured vault.
-
getBulkSecret(GetBulkSecretRequest) - Method in class io.dapr.client.DaprClientHttp
+
getBulkSecret(GetBulkSecretRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Fetches all secrets from the configured vault.
-
getBulkSecret(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getBulkSecret(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Gets a bulk of secrets
-
getBulkSecret(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getBulkSecret(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Gets a bulk of secrets
-
getBulkSecret(DaprProtos.GetBulkSecretRequest, StreamObserver<DaprProtos.GetBulkSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getBulkSecret(DaprProtos.GetBulkSecretRequest, StreamObserver<DaprProtos.GetBulkSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Gets a bulk of secrets
-
getBulkSecret(DaprProtos.GetBulkSecretRequest, StreamObserver<DaprProtos.GetBulkSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getBulkSecret(DaprProtos.GetBulkSecretRequest, StreamObserver<DaprProtos.GetBulkSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Gets a bulk of secrets
-
getBulkSecret(String) - Method in class io.dapr.client.DaprClientGrpc
-
-
Fetches all secrets from the configured vault.
-
-
getBulkSecret(String) - Method in interface io.dapr.client.DaprClient
-
-
Fetches all secrets from the configured vault.
-
-
getBulkSecret(String, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
+
getBulkSecret(String) - Method in interface io.dapr.client.DaprClient
Fetches all secrets from the configured vault.
-
getBulkSecret(String, Map<String, String>) - Method in interface io.dapr.client.DaprClient
+
getBulkSecret(String, Map<String, String>) - Method in interface io.dapr.client.DaprClient
Fetches all secrets from the configured vault.
-
GetBulkSecretRequest - Class in io.dapr.client.domain
+
GetBulkSecretRequest - Class in io.dapr.client.domain
A request to get a secret by key.
-
GetBulkSecretRequest(String) - Constructor for class io.dapr.client.domain.GetBulkSecretRequest
+
GetBulkSecretRequest(String) - Constructor for class io.dapr.client.domain.GetBulkSecretRequest
Constructor for GetBulkSecretRequest.
-
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
Retrieve bulk States based on their keys.
-
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
Retrieve bulk States based on their keys.
-
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
getBulkState(GetBulkStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Retrieve bulk States based on their keys.
-
getBulkState(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getBulkState(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Gets a bulk of state items for a list of keys
-
getBulkState(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getBulkState(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Gets a bulk of state items for a list of keys
-
getBulkState(DaprProtos.GetBulkStateRequest, StreamObserver<DaprProtos.GetBulkStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getBulkState(DaprProtos.GetBulkStateRequest, StreamObserver<DaprProtos.GetBulkStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Gets a bulk of state items for a list of keys
-
getBulkState(DaprProtos.GetBulkStateRequest, StreamObserver<DaprProtos.GetBulkStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getBulkState(DaprProtos.GetBulkStateRequest, StreamObserver<DaprProtos.GetBulkStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Gets a bulk of state items for a list of keys
-
getBulkState(String, List<String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getBulkState(String, List<String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
Retrieve bulk States based on their keys.
-
getBulkState(String, List<String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getBulkState(String, List<String>, Class<T>) - Method in interface io.dapr.client.DaprClient
Retrieve bulk States based on their keys.
-
getBulkState(String, List<String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
GetBulkStateRequest - Class in io.dapr.client.domain
-
Retrieve bulk States based on their keys.
+
A request to get bulk state by keys.
-
getBulkState(String, List<String>, Class<T>) - Method in interface io.dapr.client.DaprClient
+
GetBulkStateRequest(String, String...) - Constructor for class io.dapr.client.domain.GetBulkStateRequest
+
 
+
GetBulkStateRequest(String, List<String>) - Constructor for class io.dapr.client.domain.GetBulkStateRequest
-
Retrieve bulk States based on their keys.
+
Constructor for GetBulkStateRequest.
-
GetBulkStateRequest - Class in io.dapr.client.domain
+
getBulkSubscribe() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
A request to get bulk state by keys.
+
+ The optional bulk subscribe settings for this topic.
-
GetBulkStateRequest(String, String...) - Constructor for class io.dapr.client.domain.GetBulkStateRequest
-
 
-
GetBulkStateRequest(String, List<String>) - Constructor for class io.dapr.client.domain.GetBulkStateRequest
+
getBulkSubscribe() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
Constructor for GetBulkStateRequest.
+
+ The optional bulk subscribe settings for this topic.
+
+
getBulkSubscribe() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
getBulkSubscribeBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
getBulkSubscribeOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
getBulkSubscribeOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
+
+ The optional bulk subscribe settings for this topic.
+
+
getBulkSubscribeOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
getBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
bytes bytes = 2;
+
+
getBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
bytes bytes = 2;
+
+
getBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
bytes bytes = 2;
-
getCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string callback = 6;
-
getCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getCallback() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string callback = 6;
-
getCallback() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getCallback() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string callback = 6;
-
getCallbackBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getCallbackBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string callback = 6;
-
getCallbackBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getCallbackBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string callback = 6;
-
getCallbackBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getCallbackBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string callback = 6;
-
getCallType() - Method in class io.dapr.actors.runtime.ActorMethodContext
+
getCallType() - Method in class io.dapr.actors.runtime.ActorMethodContext
Gets the call type to be used.
-
getCapabilities(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getCapabilities(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
getCapabilities(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getCapabilities(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
repeated string capabilities = 4;
-
getCapabilities(int) - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getCapabilities(int) - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
repeated string capabilities = 4;
-
getCapabilitiesBytes(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getCapabilitiesBytes(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
getCapabilitiesBytes(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getCapabilitiesBytes(int) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
repeated string capabilities = 4;
-
getCapabilitiesBytes(int) - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getCapabilitiesBytes(int) - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
repeated string capabilities = 4;
-
getCapabilitiesCount() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getCapabilitiesCount() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
getCapabilitiesCount() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getCapabilitiesCount() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
repeated string capabilities = 4;
-
getCapabilitiesCount() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getCapabilitiesCount() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
repeated string capabilities = 4;
-
getCapabilitiesList() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getCapabilitiesList() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
getCapabilitiesList() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getCapabilitiesList() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
repeated string capabilities = 4;
-
getCapabilitiesList() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getCapabilitiesList() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
repeated string capabilities = 4;
-
getClauses() - Method in class io.dapr.client.domain.query.filters.AndFilter
+
getClauses() - Method in class io.dapr.client.domain.query.filters.AndFilter
 
-
getClauses() - Method in class io.dapr.client.domain.query.filters.OrFilter
+
getClauses() - Method in class io.dapr.client.domain.query.filters.OrFilter
 
-
getConcurrency() - Method in class io.dapr.client.domain.StateOptions
+
getCloudEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEvent() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEventBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEventOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEventOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getCloudEventOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
getConcurrency() - Method in class io.dapr.client.domain.StateOptions
 
-
getConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getConcurrency() - Method in class io.dapr.v1.CommonProtos.StateOptions
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrency() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
+
getConcurrency() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The concurrency of output bindings to send data to "to" output bindings list.
-
getConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getConcurrency() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
The concurrency of output bindings to send data to "to" output bindings list.
-
getConcurrency() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getConcurrency() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
The concurrency of output bindings to send data to "to" output bindings list.
-
getConcurrencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getConcurrencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getConcurrencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrencyValue() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
+
getConcurrencyValue() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
getConcurrencyValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getConcurrencyValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The concurrency of output bindings to send data to "to" output bindings list.
-
getConcurrencyValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getConcurrencyValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
The concurrency of output bindings to send data to "to" output bindings list.
-
getConcurrencyValue() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getConcurrencyValue() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
The concurrency of output bindings to send data to "to" output bindings list.
-
getConfig() - Method in class io.dapr.actors.runtime.ActorRuntime
+
getConfig() - Method in class io.dapr.actors.runtime.ActorRuntime
Gets the Actor configuration for this runtime.
-
getConfiguration(GetConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
+
getConfiguration(GetConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
Retrieve Map of configurations based on a provided configuration request object.
-
getConfiguration(GetConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
+
getConfiguration(GetConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Retrieve Map of configurations based on a provided configuration request object.
-
getConfiguration(GetConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
+
getConfiguration(GetConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
Retrieve Map of configurations based on a provided configuration request object.
-
getConfiguration(String, String) - Method in class io.dapr.client.DaprClientGrpc
-
-
Retrieve a configuration based on a provided key.
-
-
getConfiguration(String, String) - Method in interface io.dapr.client.DaprPreviewClient
+
getConfiguration(String, String) - Method in interface io.dapr.client.DaprPreviewClient
Retrieve a configuration based on a provided key.
-
getConfiguration(String, String...) - Method in class io.dapr.client.DaprClientGrpc
+
getConfiguration(String, String...) - Method in interface io.dapr.client.DaprPreviewClient
Retrieve Map of configurations based on a provided variable number of keys.
-
getConfiguration(String, String...) - Method in interface io.dapr.client.DaprPreviewClient
-
-
Retrieve Map of configurations based on a provided variable number of keys.
-
-
getConfiguration(String, String, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Retrieve a configuration based on a provided key.
-
-
getConfiguration(String, String, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
+
getConfiguration(String, String, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
Retrieve a configuration based on a provided key.
-
getConfiguration(String, List<String>, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Retrieve Map of configurations based on a provided variable number of keys.
-
-
getConfiguration(String, List<String>, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
+
getConfiguration(String, List<String>, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
Retrieve Map of configurations based on a provided variable number of keys.
-
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
GetConfiguration gets configuration from configuration store.
-
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
GetConfiguration gets configuration from configuration store.
-
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest, StreamObserver<DaprProtos.GetConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest, StreamObserver<DaprProtos.GetConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
GetConfiguration gets configuration from configuration store.
-
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest, StreamObserver<DaprProtos.GetConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getConfigurationAlpha1(DaprProtos.GetConfigurationRequest, StreamObserver<DaprProtos.GetConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
GetConfiguration gets configuration from configuration store.
-
GetConfigurationRequest - Class in io.dapr.client.domain
+
GetConfigurationRequest - Class in io.dapr.client.domain
Request to get one or more configuration items from Dapr's configuration store.
-
GetConfigurationRequest(String, List<String>) - Constructor for class io.dapr.client.domain.GetConfigurationRequest
+
GetConfigurationRequest(String, List<String>) - Constructor for class io.dapr.client.domain.GetConfigurationRequest
Constructor for GetConfigurationRequest.
-
getConsistency() - Method in class io.dapr.client.domain.StateOptions
+
getConsistency() - Method in class io.dapr.client.domain.StateOptions
 
-
getConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getConsistency() - Method in class io.dapr.v1.CommonProtos.StateOptions
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistency() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
+
getConsistency() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The read consistency of the state store.
-
getConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getConsistency() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
The read consistency of the state store.
-
getConsistency() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getConsistency() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
The read consistency of the state store.
-
getConsistencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getConsistencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getConsistencyValue() - Method in class io.dapr.v1.CommonProtos.StateOptions
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistencyValue() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
+
getConsistencyValue() - Method in interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
getConsistencyValue() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getConsistencyValue() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The read consistency of the state store.
-
getConsistencyValue() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getConsistencyValue() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
The read consistency of the state store.
-
getConsistencyValue() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getConsistencyValue() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
The read consistency of the state store.
-
getContentType() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
getContentType() - Method in class io.dapr.client.domain.BulkPublishEntry
+
 
+
getContentType() - Method in class io.dapr.client.domain.BulkSubscribeMessageEntry
 
-
getContentType() - Method in class io.dapr.client.domain.PublishEventRequest
+
getContentType() - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
getContentType() - Method in interface io.dapr.serializer.DaprObjectSerializer
+
getContentType() - Method in class io.dapr.client.domain.PublishEventRequest
+
 
+
getContentType() - Method in interface io.dapr.serializer.DaprObjectSerializer
Returns the content type of the request.
-
getContentType() - Method in class io.dapr.serializer.DefaultObjectSerializer
+
getContentType() - Method in class io.dapr.serializer.DefaultObjectSerializer
Returns the content type of the request.
-
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
The type of data content.
-
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
The type of data content.
-
getContentType() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getContentType() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
The type of data content.
-
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
Required.
-
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getContentType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
Required.
-
getContentType() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
getContentType() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
Required.
-
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
- The type of data content.
+ content type of the event contained.
-
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
- The type of data content.
+ content type of the event contained.
-
getContentTypeBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getContentType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- The type of data content.
+ content type of the event contained.
-
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getContentType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
- Required.
+ The content type for the event
-
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getContentType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
- Required.
+ The content type for the event
-
getContentTypeBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
getContentType() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
- Required.
+ The content type for the event
-
getCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
int32 count = 2;
+
+ The type of data content.
-
getCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
+
+ The type of data content.
+
+
getContentTypeBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
+
+ The type of data content.
+
+
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
+
+ Required.
+
+
getContentTypeBytes() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
+
+ Required.
+
+
getContentTypeBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
+
+ Required.
+
+
getContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ content type of the event contained.
+
+
getContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
+ content type of the event contained.
+
+
getContentTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
+ content type of the event contained.
+
+
getContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The content type for the event
+
+
getContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
+
+ The content type for the event
+
+
getContentTypeBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
+
+
+ The content type for the event
+
+
getCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
+
int32 count = 2;
+
+
getCount() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
int32 count = 2;
-
getCount() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
+
getCount() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
int32 count = 2;
-
getData() - Method in class io.dapr.client.domain.CloudEvent
+
getData() - Method in class io.dapr.client.domain.CloudEvent
Gets the cloud event data.
-
getData() - Method in class io.dapr.client.domain.InvokeBindingRequest
+
getData() - Method in class io.dapr.client.domain.InvokeBindingRequest
 
-
getData() - Method in class io.dapr.client.domain.PublishEventRequest
+
getData() - Method in class io.dapr.client.domain.PublishEventRequest
 
-
getData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Required.
+ Required in unary RPCs.
-
getData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
- Required.
+ Required in unary RPCs.
-
getData() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
- Required.
+ Required in unary RPCs.
-
getData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Required.
+ Required in unary RPCs.
-
getData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
- Required.
+ Required in unary RPCs.
-
getData() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
- Required.
+ Required in unary RPCs. +
+
getData() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Data sent in the chunk.
+
+
getData() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
+
+ Data sent in the chunk.
+
+
getData() - Method in interface io.dapr.v1.CommonProtos.StreamPayloadOrBuilder
+
+
+ Data sent in the chunk.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
Required.
-
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
Required.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The content which will be sent to "to" output bindings.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
The content which will be sent to "to" output bindings.
-
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
The content which will be sent to "to" output bindings.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content of the event.
+
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ The content of the event.
+
+
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
The content of the event.
-
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content of the event.
-
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getData() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
The content of the event.
-
getData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getData() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The content of the event.
+
+
getData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The byte array data
-
getData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getData() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
The byte array data
-
getData() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
The byte array data
-
getData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
bytes data = 1;
-
getData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
bytes data = 1;
-
getData() - Method in interface io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder
bytes data = 1;
-
getData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
-
Deprecated.
+
Deprecated.
-
getData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
-
Deprecated.
+
Deprecated.
-
getData() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
-
Deprecated.
+
Deprecated.
-
getData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
-
Deprecated.
+
Deprecated.
-
getData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
-
Deprecated.
+
Deprecated.
-
getData() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
-
Deprecated.
+
Deprecated.
-
getData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The byte array data
-
getData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
The byte array data
-
getData() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
The byte array data
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
bytes data = 4;
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
bytes data = 4;
-
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
bytes data = 4;
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
bytes data = 1;
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
bytes data = 1;
-
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder
bytes data = 1;
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The data which will be sent to output binding.
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
The data which will be sent to output binding.
-
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
The data which will be sent to output binding.
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The data which will be sent to output binding.
-
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getData() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
The data which will be sent to output binding.
-
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
The data which will be sent to output binding.
-
getData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The data which will be published to topic.
-
getData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getData() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
The data which will be published to topic.
-
getData() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
The data which will be published to topic.
-
getData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object value.
-
getData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getData() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
The object value.
-
getData() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
The object value.
-
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
bytes data = 6;
-
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
bytes data = 6;
-
getData() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
bytes data = 6;
-
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
bytes data = 7;
-
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getData() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
bytes data = 7;
-
getData() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getData() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
bytes data = 7;
-
getDataBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getDataBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Required.
+ Required in unary RPCs.
-
getDataBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getDataBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Required.
+ Required in unary RPCs.
-
getDatacontenttype() - Method in class io.dapr.client.domain.CloudEvent
+
getDatacontenttype() - Method in class io.dapr.client.domain.CloudEvent
Gets the type of the data's content.
-
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content type of data value.
+
+
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ The content type of data value.
+
+
getDataContentType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
+
+
+ The content type of data value.
+
+
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content type of data value.
-
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getDataContentType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
The content type of data value.
-
getDataContentType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getDataContentType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
The content type of data value.
-
getDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The content type for the data (optional).
-
getDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getDataContentType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
The content type for the data (optional).
-
getDataContentType() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getDataContentType() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
The content type for the data (optional).
-
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content type of data value.
+
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ The content type of data value.
+
+
getDataContentTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
+
+
+ The content type of data value.
+
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content type of data value.
-
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
The content type of data value.
-
getDataContentTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getDataContentTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
The content type of data value.
-
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The content type for the data (optional).
-
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getDataContentTypeBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
The content type for the data (optional).
-
getDataContentTypeBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getDataContentTypeBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
The content type for the data (optional).
-
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getDataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
getDataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
data hold the secret values.
-
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
getDataCount() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
getDataCount() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
data is the secret value.
-
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
data hold the secret values.
-
getDataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
getDataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
data hold the secret values.
-
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
data is the secret value.
-
getDataMap() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
getDataMap() - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
data is the secret value.
-
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Required.
+ Required in unary RPCs.
-
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
- Required.
+ Required in unary RPCs.
-
getDataOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getDataOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
- Required.
+ Required in unary RPCs.
-
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Required.
+ Required in unary RPCs.
-
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getDataOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
- Required.
+ Required in unary RPCs.
-
getDataOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
getDataOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
- Required.
+ Required in unary RPCs.
-
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
data hold the secret values.
-
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
getDataOrDefault(String, DaprProtos.SecretResponse) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
data hold the secret values.
-
getDataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
getDataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
data is the secret value.
-
getDataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
getDataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
data is the secret value.
-
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
data hold the secret values.
-
getDataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
+
getDataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder
data hold the secret values.
-
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
data is the secret value.
-
getDataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
+
getDataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder
data is the secret value.
-
getDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional dead letter queue for this topic to send events to.
-
getDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getDeadLetterTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
The optional dead letter queue for this topic to send events to.
-
getDeadLetterTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getDeadLetterTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
The optional dead letter queue for this topic to send events to.
-
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getDeadLetterTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string dead_letter_topic = 5;
+
+
getDeadLetterTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
string dead_letter_topic = 5;
+
+
getDeadLetterTopic() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
string dead_letter_topic = 5;
+
+
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional dead letter queue for this topic to send events to.
-
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
The optional dead letter queue for this topic to send events to.
-
getDeadLetterTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getDeadLetterTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
The optional dead letter queue for this topic to send events to.
-
getDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string dead_letter_topic = 5;
+
+
getDeadLetterTopicBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
string dead_letter_topic = 5;
+
+
getDeadLetterTopicBytes() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
string dead_letter_topic = 5;
+
+
getDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The default path for this topic.
-
getDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getDefault() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
The default path for this topic.
-
getDefault() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getDefault() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
The default path for this topic.
-
getDefaultBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getDefaultBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The default path for this topic.
-
getDefaultBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getDefaultBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
The default path for this topic.
-
getDefaultBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getDefaultBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
The default path for this topic.
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.Etag
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.Etag
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
getDefaultInstance() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.Etag
+
getDefaultInstance() - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.Etag
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
getDeleteBulkStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
getDeleteStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.Etag.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.Etag
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
getDescriptor() - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
getDescriptor() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
getDescriptor() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
getDescriptor() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
getDescriptor() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getDefaultInstanceForType() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getDeleteBulkStateMethod() - Static method in class io.dapr.v1.DaprGrpc
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getDeleteStateMethod() - Static method in class io.dapr.v1.DaprGrpc
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getDescriptor() - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getDescriptor() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getDescriptor() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getDescriptor() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getDescriptor() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
getDescriptor() - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos
 
-
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
getDescriptorForType() - Method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
getDrainBalancedActors() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
getDescriptor() - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
getDescriptor() - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
getDescriptorForType() - Method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
getDescriptorForType() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
getDrainBalancedActors() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Gets whether balanced actors should be drained.
-
getDrainOngoingCallTimeout() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
getDrainOngoingCallTimeout() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Gets the timeout to drain ongoing calls.
-
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string due_time = 4;
-
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string due_time = 4;
-
getDueTime() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getDueTime() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string due_time = 4;
-
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string due_time = 4;
-
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getDueTime() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string due_time = 4;
-
getDueTime() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getDueTime() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string due_time = 4;
-
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string due_time = 4;
-
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
string due_time = 4;
-
getDueTimeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getDueTimeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
string due_time = 4;
-
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string due_time = 4;
-
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getDueTimeBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
string due_time = 4;
-
getDueTimeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getDueTimeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
string due_time = 4;
-
getEnvName() - Method in class io.dapr.config.Property
+
getEnabled() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
-
Gets the environment variable's name.
+
+ Required.
-
getError() - Method in class io.dapr.client.domain.QueryStateItem
+
getEnabled() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
-
Retrieve the error for this state.
+
+ Required.
-
getError() - Method in class io.dapr.client.domain.State
+
getEnabled() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder
-
Retrieve the error for this state.
+
+ Required.
-
getError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getEntries() - Method in class io.dapr.client.domain.BulkPublishRequest
+
 
+
getEntries() - Method in class io.dapr.client.domain.BulkSubscribeMessage
+
 
+
getEntries(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The error that was returned from the state store in case of a failed get operation.
+ The list of items inside this bulk request.
-
getError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getEntries(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The error that was returned from the state store in case of a failed get operation.
+ The list of items inside this bulk request.
-
getError() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getEntries(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The error that was returned from the state store in case of a failed get operation.
+ The list of items inside this bulk request.
-
getError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The error message indicating an error in processing of the query result.
+ The entries which contain the individual events and associated details to be published
-
getError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
- The error message indicating an error in processing of the query result.
+ The entries which contain the individual events and associated details to be published
-
getError() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getEntries(int) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The error message indicating an error in processing of the query result.
+ The entries which contain the individual events and associated details to be published
-
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getEntriesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The error that was returned from the state store in case of a failed get operation.
+ The list of items inside this bulk request.
-
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getEntriesBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The error that was returned from the state store in case of a failed get operation.
+ The entries which contain the individual events and associated details to be published
-
getErrorBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getEntriesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The error that was returned from the state store in case of a failed get operation.
+ The list of items inside this bulk request.
-
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getEntriesBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The error message indicating an error in processing of the query result.
+ The entries which contain the individual events and associated details to be published
-
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getEntriesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The error message indicating an error in processing of the query result.
+ The list of items inside this bulk request.
-
getErrorBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getEntriesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The error message indicating an error in processing of the query result.
+ The list of items inside this bulk request.
-
getErrorCode() - Method in class io.dapr.exceptions.DaprError
+
getEntriesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
-
Gets the error code.
+
+ The list of items inside this bulk request.
-
getErrorCode() - Method in exception io.dapr.exceptions.DaprException
+
getEntriesCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
Returns the exception's error code.
+
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.client.domain.DeleteStateRequest
-
 
-
getEtag() - Method in class io.dapr.client.domain.QueryStateItem
+
getEntriesCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
Retrieve the ETag of this state.
+
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.client.domain.State
+
getEntriesCount() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
Retrieve the ETag of this state.
+
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getEntriesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getEntriesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getEntriesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getEntriesList() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getEntriesList() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getEntriesList() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getEntriesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getEntriesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getEntriesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getEntriesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtag() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getEntriesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The list of items inside this bulk request.
-
getEtagBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getEntriesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtagBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getEntriesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getEntriesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The entity tag which represents the specific version of data.
+ The entries which contain the individual events and associated details to be published
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getEntry() - Method in class io.dapr.client.domain.BulkPublishResponseFailedEntry
+
 
+
getEntryId() - Method in class io.dapr.client.domain.BulkPublishEntry
+
 
+
getEntryId() - Method in class io.dapr.client.domain.BulkSubscribeAppResponseEntry
+
 
+
getEntryId() - Method in class io.dapr.client.domain.BulkSubscribeMessageEntry
+
 
+
getEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
- The entity tag which represents the specific version of data.
+ Unique identifier for the message.
-
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
- The entity tag which represents the specific version of data.
+ Unique identifier for the message.
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getEntryId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- The entity tag which represents the specific version of data.
+ Unique identifier for the message.
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
- The entity tag which represents the specific version of data.
+ Unique identifier associated the message.
-
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getEntryId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
- The entity tag which represents the specific version of data.
+ Unique identifier associated the message.
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getEntryId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder
- The entity tag which represents the specific version of data.
+ Unique identifier associated the message.
-
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
- The entity tag which represents the specific version of data.
+ The request scoped unique ID referring to this message.
-
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
- The entity tag which represents the specific version of data.
+ The request scoped unique ID referring to this message.
-
getEtagOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getEntryId() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
- The entity tag which represents the specific version of data.
+ The request scoped unique ID referring to this message.
-
getEtagOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
- The entity tag which represents the specific version of data.
+ The response scoped unique ID referring to this message
-
getEtagOrBuilder() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getEntryId() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
- The entity tag which represents the specific version of data.
+ The response scoped unique ID referring to this message
-
getEtagOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getEntryId() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder
- The entity tag which represents the specific version of data.
+ The response scoped unique ID referring to this message
-
getEtagOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
- The entity tag which represents the specific version of data.
+ Unique identifier for the message.
-
getEtagOrBuilder() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
- The entity tag which represents the specific version of data.
+ Unique identifier for the message.
-
getExecuteActorStateTransactionMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getExecuteStateTransactionMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getEntryIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- Required.
+ Unique identifier for the message.
-
getExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
- Required.
+ Unique identifier associated the message.
-
getExpiryInSeconds() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
- Required.
+ Unique identifier associated the message.
-
getExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getEntryIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder
-
Deprecated.
+
+ Unique identifier associated the message.
-
getExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
-
Deprecated.
+
+ The request scoped unique ID referring to this message.
-
getExtendedMetadata() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
-
Deprecated.
+
+ The request scoped unique ID referring to this message.
-
getExtendedMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
 
-
getExtendedMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
 
-
getExtendedMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getEntryIdBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
-
map<string, string> extended_metadata = 4;
+
+ The request scoped unique ID referring to this message.
-
getExtendedMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
-
map<string, string> extended_metadata = 4;
+
+ The response scoped unique ID referring to this message
-
getExtendedMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getEntryIdBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
-
map<string, string> extended_metadata = 4;
+
+ The response scoped unique ID referring to this message
-
getExtendedMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getEntryIdBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder
-
map<string, string> extended_metadata = 4;
+
+ The response scoped unique ID referring to this message
-
getExtendedMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getEnvName() - Method in class io.dapr.config.Property
-
map<string, string> extended_metadata = 4;
+
Gets the environment variable's name.
-
getExtendedMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getError() - Method in class io.dapr.client.domain.QueryStateItem
-
map<string, string> extended_metadata = 4;
+
Retrieve the error for this state.
-
getExtendedMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getError() - Method in class io.dapr.client.domain.State
-
map<string, string> extended_metadata = 4;
+
Retrieve the error for this state.
-
getExtendedMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getError() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
-
map<string, string> extended_metadata = 4;
+
+ The error message if any on failure
-
getExtendedMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getError() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
-
map<string, string> extended_metadata = 4;
+
+ The error message if any on failure
-
getExtendedMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getError() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder
-
map<string, string> extended_metadata = 4;
+
+ The error message if any on failure
-
getFilter() - Method in class io.dapr.client.domain.query.Query
-
 
-
getGetActorStateMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetBulkSecretMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetBulkStateMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetMetadataMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetSecretMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getGetStateMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getHeaders() - Method in class io.dapr.client.DaprHttp.Response
-
 
-
getHeaders() - Method in class io.dapr.client.domain.HttpExtension
-
 
-
getHealthCheckMethod() - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
-
 
-
getHttpExtension() - Method in class io.dapr.client.domain.InvokeMethodRequest
-
 
-
getHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- HTTP specific fields if request conveys http-compatible request.
+ The error that was returned from the state store in case of a failed get operation.
-
getHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getError() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
- HTTP specific fields if request conveys http-compatible request.
+ The error that was returned from the state store in case of a failed get operation.
-
getHttpExtension() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getError() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- HTTP specific fields if request conveys http-compatible request.
+ The error that was returned from the state store in case of a failed get operation.
-
getHttpExtensionBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
- HTTP specific fields if request conveys http-compatible request.
+ The error message indicating an error in processing of the query result.
-
getHttpExtensionOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getError() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
- HTTP specific fields if request conveys http-compatible request.
+ The error message indicating an error in processing of the query result.
-
getHttpExtensionOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getError() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
- HTTP specific fields if request conveys http-compatible request.
+ The error message indicating an error in processing of the query result.
-
getHttpExtensionOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
- HTTP specific fields if request conveys http-compatible request.
+ The error message if any on failure
-
getId() - Method in class io.dapr.actors.runtime.AbstractActor
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
-
Returns the id of the actor.
+
+ The error message if any on failure
-
getId() - Method in class io.dapr.client.domain.CloudEvent
+
getErrorBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder
-
Gets the identifier of the message being processed.
+
+ The error message if any on failure
-
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- id identifies the event.
+ The error that was returned from the state store in case of a failed get operation.
-
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
- id identifies the event.
+ The error that was returned from the state store in case of a failed get operation.
-
getId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getErrorBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- id identifies the event.
+ The error that was returned from the state store in case of a failed get operation.
-
getId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
-
string id = 1;
+
+ The error message indicating an error in processing of the query result.
-
getId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getErrorBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
-
string id = 1;
+
+ The error message indicating an error in processing of the query result.
-
getId() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getErrorBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
-
string id = 1;
+
+ The error message indicating an error in processing of the query result.
-
getId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getErrorCode() - Method in class io.dapr.exceptions.DaprError
-
- Required.
+
Gets the error code.
-
getId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getErrorCode() - Method in exception io.dapr.exceptions.DaprException
-
- Required.
+
Returns the exception's error code.
-
getId() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
getErrorMessage() - Method in class io.dapr.client.domain.BulkPublishResponseFailedEntry
+
 
+
getEtag() - Method in class io.dapr.client.domain.DeleteStateRequest
+
 
+
getEtag() - Method in class io.dapr.client.domain.QueryStateItem
-
- Required.
+
Retrieve the ETag of this state.
-
getId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getEtag() - Method in class io.dapr.client.domain.State
-
- Subscribe id, used to stop subscription.
+
Retrieve the ETag of this state.
-
getId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- Subscribe id, used to stop subscription.
+ The entity tag which represents the specific version of data.
-
getId() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getEtag() - Method in class io.dapr.v1.CommonProtos.StateItem
- Subscribe id, used to stop subscription.
+ The entity tag which represents the specific version of data.
-
getId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getEtag() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getId() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
getEtag() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getEtag() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- id identifies the event.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- id identifies the event.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- id identifies the event.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getEtag() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
string id = 1;
+
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
string id = 1;
+
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getEtag() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
string id = 1;
+
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getEtag() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
- Required.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
- Required.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
getEtag() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
- Required.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getEtag() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
- Subscribe id, used to stop subscription.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getEtagBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- Subscribe id, used to stop subscription.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getEtagBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- Subscribe id, used to stop subscription.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- The id to unsubscribe.
+ The entity tag which represents the specific version of data.
-
getInstance() - Static method in class io.dapr.actors.runtime.ActorRuntime
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
Returns an ActorRuntime object.
+
+ The entity tag which represents the specific version of data.
-
getInvokeActorMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getInvokeBindingMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getInvokeServiceMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getIsUnsubscribed() - Method in class io.dapr.client.domain.UnsubscribeConfigurationResponse
-
 
-
getItems() - Method in class io.dapr.client.domain.SubscribeConfigurationResponse
-
 
-
getItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getEtagBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getEtagBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getEtagOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
Deprecated.
+
+ The entity tag which represents the specific version of data.
-
getItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getEtagOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
- The list of items containing the keys to get values for.
+ The entity tag which represents the specific version of data.
-
getItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getEtagOrBuilder() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
- The list of items containing the keys to get values for.
+ The entity tag which represents the specific version of data.
-
getItems(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
+
getEtagOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- The list of items containing the keys to get values for.
+ The entity tag which represents the specific version of data.
-
getItemsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getEtagOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- The list of items containing the keys to get values for.
+ The entity tag which represents the specific version of data.
-
getItemsBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getEtagOrBuilder() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
- The list of items containing the keys to get values for.
+ The entity tag which represents the specific version of data.
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getEvent() - Method in class io.dapr.client.domain.BulkPublishEntry
+
 
+
getEvent() - Method in class io.dapr.client.domain.BulkSubscribeMessageEntry
+
 
+
getEvent() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
- The list of items containing the keys to get values for.
+ The event which will be pulished to the topic
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getEvent() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
- The list of items containing the keys to get values for.
+ The event which will be pulished to the topic
-
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
+
getEvent() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
- The list of items containing the keys to get values for.
+ The event which will be pulished to the topic
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getEventCase() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getEventCase() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getEventCase() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
 
+
getExecuteActorStateTransactionMethod() - Static method in class io.dapr.v1.DaprGrpc
 
-
getItemsCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getExecuteStateTransactionMethod() - Static method in class io.dapr.v1.DaprGrpc
 
-
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
- The list of items containing configuration values
+ Required.
-
getItemsList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getExpiryInSeconds() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
- The list of items containing the keys to get values for.
+ Required.
-
getItemsList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getExpiryInSeconds() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
- The list of items containing the keys to get values for.
+ Required.
-
getItemsList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
+
getExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The list of items containing the keys to get values for.
+
Deprecated.
-
getItemsMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
Deprecated.
-
getItemsMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getExtendedMetadata() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
Deprecated.
-
getItemsMap() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
+
getExtendedMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
getExtendedMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
getExtendedMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
map<string, string> extended_metadata = 4;
-
getItemsMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getExtendedMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The list of items containing configuration values
+
map<string, string> extended_metadata = 4;
-
getItemsMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getExtendedMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The list of items containing configuration values
+
map<string, string> extended_metadata = 4;
-
getItemsMap() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getExtendedMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The list of items containing configuration values
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getExtendedMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The list of items containing the keys to get values for.
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getExtendedMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The list of items containing the keys to get values for.
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
+
getExtendedMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The list of items containing the keys to get values for.
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
getExtendedMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The list of items containing the keys to get values for.
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getExtendedMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The list of items containing the keys to get values for.
+
map<string, string> extended_metadata = 4;
-
getItemsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
+
getExtendedMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
map<string, string> extended_metadata = 4;
+
+
getExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- The list of items containing the keys to get values for.
+ Custom attributes which includes cloud event extensions.
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
+ Custom attributes which includes cloud event extensions.
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getExtensions() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- The list of items containing configuration values
+ Custom attributes which includes cloud event extensions.
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The list of items containing configuration values
+ The map of additional custom properties to be sent to the app.
-
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The list of items containing configuration values
+ The map of additional custom properties to be sent to the app.
-
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getExtensions() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
+ The map of additional custom properties to be sent to the app.
-
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getExtensionsBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
+ Custom attributes which includes cloud event extensions.
-
getItemsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
+
getExtensionsBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
-
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
+
+ The map of additional custom properties to be sent to the app.
-
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getExtensionsOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- The list of items containing configuration values
+ Custom attributes which includes cloud event extensions.
-
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getExtensionsOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
- The list of items containing configuration values
+ Custom attributes which includes cloud event extensions.
-
getItemsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
+
getExtensionsOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- The list of items containing configuration values
+ Custom attributes which includes cloud event extensions.
-
getKey() - Method in class io.dapr.client.domain.ConfigurationItem
-
 
-
getKey() - Method in class io.dapr.client.domain.DeleteStateRequest
-
 
-
getKey() - Method in class io.dapr.client.domain.GetSecretRequest
-
 
-
getKey() - Method in class io.dapr.client.domain.GetStateRequest
-
 
-
getKey() - Method in class io.dapr.client.domain.query.filters.EqFilter
-
 
-
getKey() - Method in class io.dapr.client.domain.query.filters.InFilter
-
 
-
getKey() - Method in class io.dapr.client.domain.query.Sorting
-
 
-
getKey() - Method in class io.dapr.client.domain.QueryStateItem
+
getExtensionsOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
-
Retrieves the Key of the state.
+
+ The map of additional custom properties to be sent to the app.
-
getKey() - Method in class io.dapr.client.domain.State
+
getExtensionsOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
Retrieves the Key of the state.
+
+ The map of additional custom properties to be sent to the app.
-
getKey() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getExtensionsOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- Required.
+ The map of additional custom properties to be sent to the app.
-
getKey() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getFailedEntries() - Method in class io.dapr.client.domain.BulkPublishResponse
+
 
+
getFailedEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- Required.
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getFailedEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
- Required.
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getFailedEntries(int) - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder
- state item key
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getFailedEntriesBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- state item key
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getFailedEntriesBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- state item key
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getFailedEntriesCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getFailedEntriesCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getFailedEntriesCount() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getFailedEntriesList() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
-
string key = 3;
+
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getFailedEntriesList() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
-
string key = 3;
+
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getFailedEntriesList() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder
-
string key = 3;
+
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getFailedEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- The name of secret key.
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getFailedEntriesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
- The name of secret key.
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getFailedEntriesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder
- The name of secret key.
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getFailedEntriesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getFailedEntriesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getFailedEntriesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder
- The key of the desired state
+ The entries for different events that failed publish in the BulkPublishEvent call
-
getKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getFilter() - Method in class io.dapr.client.domain.query.Query
+
 
+
getGetActorStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetBulkSecretMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetBulkStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetMetadataMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetSecretMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getGetWorkflowAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getHeaders() - Method in class io.dapr.client.DaprHttp.Response
+
 
+
getHeaders() - Method in class io.dapr.client.domain.HttpExtension
+
 
+
getHealthCheckMethod() - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
 
+
getHttpExtension() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
 
+
getHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- The object key.
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
- The object key.
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getHttpExtension() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
- The object key.
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getHttpExtensionBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
string key = 1;
+
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getHttpExtensionOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
string key = 1;
+
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
getHttpExtensionOrBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
-
string key = 1;
+
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getHttpExtensionOrBuilder() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
-
string key = 2;
+
+ HTTP specific fields if request conveys http-compatible request.
-
getKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getId() - Method in class io.dapr.actors.runtime.AbstractActor
-
string key = 2;
+
Returns the id of the actor.
-
getKey() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
getId() - Method in class io.dapr.client.domain.CloudEvent
-
string key = 2;
+
Gets the identifier of the message being processed.
-
getKeyBytes() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- Required.
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- Required.
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- Required.
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- state item key
+ The unique identifier of this cloud event.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
- state item key
+ The unique identifier of this cloud event.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- state item key
+ The unique identifier of this cloud event.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The key of the desired state
+ id identifies the event.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getId() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The key of the desired state
+ id identifies the event.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The key of the desired state
+ id identifies the event.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
getId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
string key = 3;
+
string id = 1;
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getId() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
string key = 3;
+
string id = 1;
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
string key = 3;
+
string id = 1;
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- The name of secret key.
+ Required.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getId() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
- The name of secret key.
+ Required.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
- The name of secret key.
+ Required.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
- The key of the desired state
+ Subscribe id, used to stop subscription.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getId() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
- The key of the desired state
+ Subscribe id, used to stop subscription.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
- The key of the desired state
+ Subscribe id, used to stop subscription.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
getId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
- The object key.
+ The id to unsubscribe.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getId() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
- The object key.
+ The id to unsubscribe.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
+
getId() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
- The object key.
+ The id to unsubscribe.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
-
string key = 1;
+
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
-
string key = 1;
+
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
-
string key = 1;
+
+ Unique identifier for the bulk request.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
-
string key = 2;
+
+ The unique identifier of this cloud event.
-
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
-
string key = 2;
+
+ The unique identifier of this cloud event.
-
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
-
string key = 2;
+
+ The unique identifier of this cloud event.
-
getKeys() - Method in class io.dapr.client.domain.GetBulkStateRequest
-
 
-
getKeys() - Method in class io.dapr.client.domain.GetConfigurationRequest
-
 
-
getKeys() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
-
 
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The keys to get.
+ id identifies the event.
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The keys to get.
+ id identifies the event.
-
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The keys to get.
+ id identifies the event.
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- Optional.
+
string id = 1;
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- Optional.
+
string id = 1;
-
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- Optional.
+
string id = 1;
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- Optional.
+ Required.
-
getKeys(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
- Optional.
+ Required.
-
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
- Optional.
+ Required.
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
- The keys to get.
+ Subscribe id, used to stop subscription.
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
- The keys to get.
+ Subscribe id, used to stop subscription.
-
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
- The keys to get.
+ Subscribe id, used to stop subscription.
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
- Optional.
+ The id to unsubscribe.
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getIdBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
- Optional.
+ The id to unsubscribe.
-
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
- Optional.
+ The id to unsubscribe.
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getInput() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
- Optional.
+
bytes input = 5;
-
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getInput() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
-
- Optional.
+
bytes input = 5;
-
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getInput() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
- Optional.
+
bytes input = 5;
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getInstance() - Static method in class io.dapr.actors.runtime.ActorRuntime
-
- The keys to get.
+
Returns an ActorRuntime object.
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
-
- The keys to get.
+
string instance_id = 1;
-
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
-
- The keys to get.
+
string instance_id = 1;
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getInstanceId() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
-
- Optional.
+
string instance_id = 1;
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
- Optional.
+
string instance_id = 1;
-
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
- Optional.
+
string instance_id = 1;
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getInstanceId() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
- Optional.
+
string instance_id = 1;
-
getKeysCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
- Optional.
+
string instance_id = 1;
-
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getInstanceId() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
- The keys to get.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
-
- The keys to get.
+
string instance_id = 1;
-
getKeysList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
-
- The keys to get.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getInstanceId() - Method in interface io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getInstanceId() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getInstanceId() - Method in interface io.dapr.v1.DaprProtos.WorkflowReferenceOrBuilder
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
-
- Optional.
+
string instance_id = 1;
-
getKeysList() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
-
- Optional.
+
string instance_id = 1;
-
getLimit() - Method in class io.dapr.client.domain.query.Pagination
-
 
-
getListInputBindingsMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getListTopicSubscriptionsMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getInstanceIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
-
- Required.
+
string instance_id = 1;
-
getLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
- Required.
+
string instance_id = 1;
-
getLockOwner() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
- Required.
+
string instance_id = 1;
-
getLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getInstanceIdBytes() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
string lock_owner = 3;
+
string instance_id = 1;
-
getLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
string lock_owner = 3;
+
string instance_id = 1;
-
getLockOwner() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
-
string lock_owner = 3;
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getInstanceIdBytes() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
- Required.
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
-
- Required.
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
-
- Required.
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getInstanceIdBytes() - Method in interface io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder
-
string lock_owner = 3;
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
-
string lock_owner = 3;
+
string instance_id = 1;
-
getLockOwnerBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getInstanceIdBytes() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
-
string lock_owner = 3;
+
string instance_id = 1;
-
getMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getInstanceIdBytes() - Method in interface io.dapr.v1.DaprProtos.WorkflowReferenceOrBuilder
-
- The optional CEL expression used to match the event.
+
string instance_id = 1;
-
getMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getInvokeActorMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getInvokeBindingMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getInvokeServiceMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getIsUnsubscribed() - Method in class io.dapr.client.domain.UnsubscribeConfigurationResponse
+
 
+
getItems() - Method in class io.dapr.client.domain.SubscribeConfigurationResponse
+
 
+
getItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
-
- The optional CEL expression used to match the event.
+
Deprecated.
-
getMatch() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
+
getItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
- The optional CEL expression used to match the event.
+
Deprecated.
-
getMatchBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getItems() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
- The optional CEL expression used to match the event.
+
Deprecated.
-
getMatchBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
- The optional CEL expression used to match the event.
+
Deprecated.
-
getMatchBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
+
getItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
- The optional CEL expression used to match the event.
+
Deprecated.
-
getMessage() - Method in class io.dapr.client.domain.UnsubscribeConfigurationResponse
-
 
-
getMessage() - Method in class io.dapr.exceptions.DaprError
+
getItems() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
-
Gets the error message.
+
Deprecated.
-
getMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
- Required.
+ The list of items containing the keys to get values for.
-
getMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
- Required.
+ The list of items containing the keys to get values for.
-
getMessage() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
getItems(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
- Required.
-
-
getMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
-
string message = 2;
-
-
getMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
-
string message = 2;
-
-
getMessage() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
-
-
string message = 2;
+ The list of items containing the keys to get values for.
-
getMessageBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getItemsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
- Required.
-
-
getMessageBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
-
string message = 2;
-
-
getMessageBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
-
string message = 2;
+ The list of items containing the keys to get values for.
-
getMessageBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
+
getItemsBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
-
string message = 2;
+
+ The list of items containing the keys to get values for.
-
getMessageOrBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
- Required.
+ The list of items containing the keys to get values for.
-
getMessageOrBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
- Required.
+ The list of items containing the keys to get values for.
-
getMessageOrBuilder() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
- Required.
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.client.domain.ConfigurationItem
-
 
-
getMetadata() - Method in class io.dapr.client.domain.DeleteStateRequest
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
getMetadata() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
getMetadata() - Method in class io.dapr.client.domain.GetBulkSecretRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.GetBulkStateRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.GetConfigurationRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.GetSecretRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.GetStateRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.InvokeBindingRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.InvokeMethodRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.PublishEventRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.QueryStateRequest
-
 
-
getMetadata() - Method in class io.dapr.client.domain.QueryStateResponse
-
 
-
getMetadata() - Method in class io.dapr.client.domain.State
+
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
Retrieve the metadata of this state.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
getMetadata() - Method in class io.dapr.client.domain.TransactionalStateRequest
+
getItemsCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
getMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getItemsCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getItemsList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getItemsList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getItemsList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getItemsMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getItemsMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getItemsMap() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getItemsMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getItemsMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getItemsMap() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getItemsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getItemsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getItemsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getItemsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getItemsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getItemsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder
-
Deprecated.
+
+ The list of items containing the keys to get values for.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getItemsOrDefault(String, CommonProtos.ConfigurationItem) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getItemsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder
-
Deprecated.
+
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getItemsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getItemsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder
-
Deprecated.
+
+ The list of items containing configuration values
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getKey() - Method in class io.dapr.client.domain.ConfigurationItem
+
 
+
getKey() - Method in class io.dapr.client.domain.DeleteStateRequest
+
 
+
getKey() - Method in class io.dapr.client.domain.GetSecretRequest
+
 
+
getKey() - Method in class io.dapr.client.domain.GetStateRequest
+
 
+
getKey() - Method in class io.dapr.client.domain.query.filters.EqFilter
+
 
+
getKey() - Method in class io.dapr.client.domain.query.filters.InFilter
+
 
+
getKey() - Method in class io.dapr.client.domain.query.Sorting
+
 
+
getKey() - Method in class io.dapr.client.domain.QueryStateItem
-
Deprecated.
+
Retrieves the Key of the state.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getKey() - Method in class io.dapr.client.domain.State
-
Deprecated.
+
Retrieves the Key of the state.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getKey() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
Deprecated.
+
+ Required.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getKey() - Method in class io.dapr.v1.CommonProtos.StateItem
-
Deprecated.
+
+ Required.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
Deprecated.
+
+ Required.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
Deprecated.
+
+ state item key
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getKey() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
Deprecated.
+
+ state item key
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
-
Deprecated.
+
+ state item key
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getKey() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
-
Deprecated.
+
string key = 3;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
-
Deprecated.
+
string key = 3;
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
-
Deprecated.
+
string key = 3;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
-
Deprecated.
+
+ The name of secret key.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
Deprecated.
+
+ The name of secret key.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
-
Deprecated.
+
+ The name of secret key.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getKey() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
-
Deprecated.
+
+ The key of the desired state
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
-
Deprecated.
+
+ The object key.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getKey() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
-
Deprecated.
+
+ The object key.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
-
Deprecated.
+
+ The object key.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
-
Deprecated.
+
string key = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getKey() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
-
Deprecated.
+
string key = 1;
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
-
Deprecated.
+
string key = 1;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
Deprecated.
+
string key = 2;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getKey() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
Deprecated.
+
string key = 2;
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getKey() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
-
Deprecated.
+
string key = 2;
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getKeyBytes() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
Deprecated.
+
+ Required.
-
getMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getKeyBytes() - Method in class io.dapr.v1.CommonProtos.StateItem
-
Deprecated.
+
+ Required.
-
getMetadata() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
Deprecated.
+
+ Required.
-
getMetadata(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- Gets metadata of the sidecar
+ state item key
-
getMetadata(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
- Gets metadata of the sidecar
+ state item key
-
getMetadata(Empty, StreamObserver<DaprProtos.GetMetadataResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- Gets metadata of the sidecar
+ state item key
-
getMetadata(Empty, StreamObserver<DaprProtos.GetMetadataResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- Gets metadata of the sidecar
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- the metadata which will be passed to/from configuration store component.
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.StateItem
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
- The metadata which will be passed to state store component.
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
-
- The metadata set by the input binging components.
+
string key = 3;
-
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
-
- The optional properties used for this topic's subscription e.g.
+
string key = 3;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder
+
+
string key = 3;
+
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
- The metadata which will be sent to app.
+ The name of secret key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
- The metadata which will be sent to state store components.
+ The name of secret key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
- The metadata used for transactional operations.
+ The name of secret key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
- The metadata which will be sent to secret store components.
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
- The metadata which will be sent to state store components.
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
- Optional.
+ The key of the desired state
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
- The metadata which will be sent to secret store components.
+ The object key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
- The metadata which will be sent to state store components.
+ The object key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder
- The metadata which will be sent to app.
+ The object key.
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
-
map<string, string> metadata = 5;
+
string key = 1;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
-
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+
string key = 1;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
-
- The metadata returned from an external system
+
string key = 1;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+
string key = 2;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getKeyBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
- The metadata which will be sent to state store components.
+
string key = 2;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
-
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
-
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getKeyBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
-
- The metadata which will be sent to app.
+
string key = 2;
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getKeys() - Method in class io.dapr.client.domain.GetBulkStateRequest
+
 
+
getKeys() - Method in class io.dapr.client.domain.GetConfigurationRequest
 
-
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getKeys() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
 
-
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- The metadata which will be sent to configuration store components.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- the metadata which will be passed to/from configuration store component.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- the metadata which will be passed to/from configuration store component.
+ The keys to get.
-
getMetadataMap() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
- the metadata which will be passed to/from configuration store component.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
- The metadata which will be passed to state store component.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The metadata which will be passed to state store component.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- The metadata which will be passed to state store component.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getKeys(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- The metadata set by the input binging components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getKeys(int) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- The metadata set by the input binging components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- The metadata set by the input binging components.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- The optional properties used for this topic's subscription e.g.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- The optional properties used for this topic's subscription e.g.
+ The keys to get.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
- The optional properties used for this topic's subscription e.g.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
- The metadata which will be sent to app.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The metadata which will be sent to app.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- The metadata which will be sent to app.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getKeysBytes(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getKeysBytes(int) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- The metadata which will be sent to state store components.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- The metadata used for transactional operations.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- The metadata used for transactional operations.
+ The keys to get.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
- The metadata used for transactional operations.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getKeysCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getKeysCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- The metadata which will be sent to state store components.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- Optional.
+ The keys to get.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getKeysList() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- Optional.
+ The keys to get.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getKeysList() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- The metadata which will be sent to secret store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getKeysList() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getKeysList() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- The metadata which will be sent to state store components.
+ Optional.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getLimit() - Method in class io.dapr.client.domain.query.Pagination
+
 
+
getListInputBindingsMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getListTopicSubscriptionsMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
- The metadata which will be sent to state store components.
+ Required.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getLockOwner() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
- The metadata which will be sent to app.
+ Required.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getLockOwner() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
- The metadata which will be sent to app.
+ Required.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
-
- The metadata which will be sent to app.
+
string lock_owner = 3;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getLockOwner() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
-
map<string, string> metadata = 5;
+
string lock_owner = 3;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getLockOwner() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
-
map<string, string> metadata = 5;
+
string lock_owner = 3;
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
-
map<string, string> metadata = 5;
+
+ Required.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+ Required.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getLockOwnerBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+ Required.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
-
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+
string lock_owner = 3;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getLockOwnerBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
-
- The metadata returned from an external system
+
string lock_owner = 3;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getLockOwnerBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
-
- The metadata returned from an external system
+
string lock_owner = 3;
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
- The metadata returned from an external system
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getMatch() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getMatch() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getMatch() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
-
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+
string match = 1;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMatch() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
-
- The metadata which will be sent to state store components.
+
string match = 1;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getMatch() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder
-
- The metadata which will be sent to state store components.
+
string match = 1;
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getMatchBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
- The metadata which will be sent to state store components.
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMatchBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
- The metadata which will be sent to app.
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMatchBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
- The metadata which will be sent to app.
+ The optional CEL expression used to match the event.
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMatchBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
-
- The metadata which will be sent to app.
+
string match = 1;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getMatchBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
-
- The metadata which will be sent to configuration store components.
+
string match = 1;
-
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getMatchBytes() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder
-
- The metadata which will be sent to configuration store components.
+
string match = 1;
-
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getMaxAwaitDurationMs() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
- The metadata which will be sent to configuration store components.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getMaxAwaitDurationMs() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
- the metadata which will be passed to/from configuration store component.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getMaxAwaitDurationMs() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder
- the metadata which will be passed to/from configuration store component.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getMaxMessagesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
- the metadata which will be passed to/from configuration store component.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMaxMessagesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
- The metadata which will be passed to state store component.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem
+
getMaxMessagesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder
- The metadata which will be passed to state store component.
+ Optional.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getMessage() - Method in class io.dapr.client.domain.UnsubscribeConfigurationResponse
+
 
+
getMessage() - Method in class io.dapr.exceptions.DaprError
-
- The metadata which will be passed to state store component.
+
Gets the error message.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- The metadata set by the input binging components.
+ Required.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
- The metadata set by the input binging components.
+ Required.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getMessage() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
- The metadata set by the input binging components.
+ Required.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
- The optional properties used for this topic's subscription e.g.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMessage() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
- The optional properties used for this topic's subscription e.g.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMessage() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
-
- The optional properties used for this topic's subscription e.g.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getMessageBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- The metadata which will be sent to app.
+ Required.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getMessageBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
- The metadata which will be sent to app.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getMessageBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
- The metadata which will be sent to app.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMessageBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
-
- The metadata which will be sent to state store components.
+
string message = 2;
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getMessageOrBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- The metadata which will be sent to state store components.
+ Required.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getMessageOrBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
- The metadata which will be sent to state store components.
+ Required.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMessageOrBuilder() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
- The metadata used for transactional operations.
+ Required.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadata() - Method in class io.dapr.client.domain.BulkPublishEntry
+
 
+
getMetadata() - Method in class io.dapr.client.domain.BulkPublishRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.BulkSubscribeMessage
+
 
+
getMetadata() - Method in class io.dapr.client.domain.BulkSubscribeMessageEntry
+
 
+
getMetadata() - Method in class io.dapr.client.domain.ConfigurationItem
+
 
+
getMetadata() - Method in class io.dapr.client.domain.DeleteStateRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.GetBulkSecretRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.GetBulkStateRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.GetConfigurationRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.GetSecretRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.GetStateRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.InvokeBindingRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.PublishEventRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.QueryStateRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.QueryStateResponse
+
 
+
getMetadata() - Method in class io.dapr.client.domain.State
-
- The metadata used for transactional operations.
+
Retrieve the metadata of this state.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadata() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
+
 
+
getMetadata() - Method in class io.dapr.client.domain.TransactionalStateRequest
+
 
+
getMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
- The metadata used for transactional operations.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getMetadata() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getMetadata() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
- Optional.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
-
- Optional.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
-
- Optional.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getMetadata() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
map<string, string> metadata = 5;
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
-
map<string, string> metadata = 5;
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
-
map<string, string> metadata = 5;
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
-
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
- The metadata returned from an external system
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
-
- The metadata returned from an external system
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
- The metadata returned from an external system
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
-
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
-
- The metadata which will be sent to configuration store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
-
- The metadata which will be sent to configuration store components.
+
Deprecated.
-
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
-
- The metadata which will be sent to configuration store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
- the metadata which will be passed to/from configuration store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
-
- the metadata which will be passed to/from configuration store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
-
- the metadata which will be passed to/from configuration store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
- The metadata which will be passed to state store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.StateItem
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
-
- The metadata which will be passed to state store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
- The metadata which will be passed to state store component.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
- The metadata set by the input binging components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
-
- The metadata set by the input binging components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
- The metadata set by the input binging components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
- The optional properties used for this topic's subscription e.g.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
-
- The optional properties used for this topic's subscription e.g.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
- The optional properties used for this topic's subscription e.g.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
- The metadata used for transactional operations.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
- The metadata used for transactional operations.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
-
- The metadata used for transactional operations.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
- Optional.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
- Optional.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
-
- Optional.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
-
- The metadata which will be sent to secret store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
-
- The metadata which will be sent to state store components.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getMetadata() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
-
- The metadata which will be sent to app.
+
Deprecated.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
+
getMetadata(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
- The metadata which will be sent to app.
+ Gets metadata of the sidecar
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getMetadata(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
-
map<string, string> metadata = 5;
+
+ Gets metadata of the sidecar
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getMetadata(Empty, StreamObserver<DaprProtos.GetMetadataResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
-
map<string, string> metadata = 5;
+
+ Gets metadata of the sidecar
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getMetadata(Empty, StreamObserver<DaprProtos.GetMetadataResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
-
map<string, string> metadata = 5;
+
+ Gets metadata of the sidecar
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+ the metadata which will be passed to/from configuration store component.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+ The metadata which will be passed to state store component.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
- The metadata passing to output binding components - - Common metadata property: - - ttlInSeconds : the time to live in seconds for the message.
+ The metadata set by the input binging components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- The metadata returned from an external system
+ The metadata associated with the event.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The metadata returned from an external system
+ The metadata associated with the this bulk request.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
- The metadata returned from an external system
+ The optional properties used for this topic's subscription e.g.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+ The event level metadata passing to the pubsub component
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+ The request level metadata passing to to the pubsub components
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- The metadata passing to pub components - metadata property: - - key : the key of the message.
+ The metadata which will be sent to app.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
The metadata which will be sent to state store components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The metadata which will be sent to state store components.
+ The metadata used for transactional operations.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
- The metadata which will be sent to state store components.
+ The metadata which will be sent to secret store components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- The metadata which will be sent to app.
+ The metadata which will be sent to state store components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The metadata which will be sent to app.
+ Optional.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
- The metadata which will be sent to app.
+ The metadata which will be sent to secret store components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
- The metadata which will be sent to configuration store components.
+ The metadata which will be sent to state store components.
-
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
- The metadata which will be sent to configuration store components.
+ The metadata which will be sent to app.
-
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
- The metadata which will be sent to configuration store components.
+
map<string, string> metadata = 3;
-
getMethod() - Method in class io.dapr.client.domain.HttpExtension
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
getMethod() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
getMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- Required.
+
map<string, string> metadata = 5;
-
getMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
- Required.
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getMethod() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
- Required.
+ The metadata returned from an external system
-
getMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
-
string method = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
string method = 3;
+
map<string, string> metadata = 3;
-
getMethod() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
-
string method = 3;
+
+ The metadata which will be sent to state store components.
-
getMethodBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- Required.
+ The metadata which will be sent to app.
-
getMethodBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
getMetadataCount() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
getMetadataCount() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- Required.
+ The metadata which will be sent to configuration store components.
-
getMethodBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
- Required.
+ the metadata which will be passed to/from configuration store component.
-
getMethodBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
string method = 3;
+
+ the metadata which will be passed to/from configuration store component.
-
getMethodBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getMetadataMap() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
-
string method = 3;
+
+ the metadata which will be passed to/from configuration store component.
-
getMethodBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
string method = 3;
+
+ The metadata which will be passed to state store component.
-
getMethodName() - Method in class io.dapr.actors.runtime.ActorMethodContext
+
getMetadataMap() - Method in class io.dapr.v1.CommonProtos.StateItem
-
Gets the name of the method invoked by actor runtime.
+
+ The metadata which will be passed to state store component.
-
getMutableData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
Deprecated.
+
+ The metadata which will be passed to state store component.
-
getMutableData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
Deprecated.
+
+ The metadata set by the input binging components.
-
getMutableExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
Deprecated.
+
+ The metadata set by the input binging components.
-
getMutableItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
-
Deprecated.
+
+ The metadata set by the input binging components.
-
getMutableItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
-
Deprecated.
+
+ The metadata associated with the this bulk request.
-
getMutableMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
-
Deprecated.
+
+ The metadata associated with the this bulk request.
-
getMutableMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
-
Deprecated.
+
+ The metadata associated with the event.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
-
Deprecated.
+
+ The metadata associated with the event.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
-
Deprecated.
+
+ The metadata associated with the event.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
-
Deprecated.
+
+ The metadata associated with the this bulk request.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
Deprecated.
+
+ The optional properties used for this topic's subscription e.g.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
Deprecated.
+
+ The optional properties used for this topic's subscription e.g.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
-
Deprecated.
+
+ The optional properties used for this topic's subscription e.g.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
Deprecated.
+
+ The request level metadata passing to to the pubsub components
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
Deprecated.
+
+ The request level metadata passing to to the pubsub components
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
-
Deprecated.
+
+ The event level metadata passing to the pubsub component
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
-
Deprecated.
+
+ The event level metadata passing to the pubsub component
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
-
Deprecated.
+
+ The event level metadata passing to the pubsub component
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
Deprecated.
+
+ The request level metadata passing to to the pubsub components
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
Deprecated.
+
+ The metadata which will be sent to app.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
Deprecated.
+
+ The metadata which will be sent to app.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
-
Deprecated.
+
+ The metadata which will be sent to app.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
Deprecated.
+
+ The metadata which will be sent to state store components.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
Deprecated.
+
+ The metadata which will be sent to state store components.
-
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
Deprecated.
+
+ The metadata which will be sent to state store components.
-
getMutableSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
-
Deprecated.
+
+ The metadata used for transactional operations.
-
getName() - Method in class io.dapr.client.domain.InvokeBindingRequest
-
 
-
getName() - Method in class io.dapr.client.domain.query.filters.Filter
-
 
-
getName() - Method in class io.dapr.config.Property
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
-
Gets the Java property's name.
+
+ The metadata used for transactional operations.
-
getName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- Required.
+ The metadata used for transactional operations.
-
getName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
- Required.
+ The metadata which will be sent to secret store components.
-
getName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
- Required.
+ The metadata which will be sent to secret store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
- The name of the output binding to invoke.
+ The metadata which will be sent to secret store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- The name of the output binding to invoke.
+ The metadata which will be sent to state store components.
-
getName() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- The name of the output binding to invoke.
+ The metadata which will be sent to state store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
-
string name = 3;
+
+ The metadata which will be sent to state store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
-
string name = 3;
+
+ Optional.
-
getName() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
string name = 3;
+
+ Optional.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
-
string name = 3;
+
+ Optional.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
-
string name = 3;
+
+ The metadata which will be sent to secret store components.
-
getName() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
string name = 3;
+
+ The metadata which will be sent to secret store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
-
string name = 1;
+
+ The metadata which will be sent to secret store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
string name = 1;
+
+ The metadata which will be sent to state store components.
-
getName() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
string name = 1;
+
+ The metadata which will be sent to state store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
-
string name = 3;
+
+ The metadata which will be sent to state store components.
-
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
string name = 3;
+
+ The metadata which will be sent to app.
-
getName() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
string name = 3;
+
+ The metadata which will be sent to app.
-
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
-
string name = 3;
+
+ The metadata which will be sent to app.
-
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
string name = 3;
+
map<string, string> metadata = 3;
-
getName() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
string name = 3;
+
map<string, string> metadata = 3;
-
getNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
- Required.
+
map<string, string> metadata = 3;
-
getNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- Required.
+
map<string, string> metadata = 5;
-
getNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
- Required.
+
map<string, string> metadata = 5;
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- The name of the output binding to invoke.
+
map<string, string> metadata = 5;
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
- The name of the output binding to invoke.
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
- The name of the output binding to invoke.
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
string name = 3;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
-
string name = 3;
+
+ The metadata returned from an external system
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
string name = 3;
+
+ The metadata returned from an external system
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
-
string name = 3;
+
+ The metadata returned from an external system
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
string name = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
string name = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
-
string name = 1;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
string name = 1;
+
map<string, string> metadata = 3;
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
string name = 1;
+
map<string, string> metadata = 3;
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
string name = 3;
+
map<string, string> metadata = 3;
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
-
string name = 3;
+
+ The metadata which will be sent to state store components.
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
string name = 3;
+
+ The metadata which will be sent to state store components.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
-
string name = 3;
+
+ The metadata which will be sent to state store components.
-
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
-
string name = 3;
+
+ The metadata which will be sent to app.
-
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
-
string name = 3;
+
+ The metadata which will be sent to app.
-
getNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
-
string new_name = 4;
+
+ The metadata which will be sent to app.
-
getNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
-
string new_name = 4;
+
+ The metadata which will be sent to configuration store components.
-
getNewName() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getMetadataMap() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
-
string new_name = 4;
+
+ The metadata which will be sent to configuration store components.
-
getNewNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getMetadataMap() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
-
string new_name = 4;
+
+ The metadata which will be sent to configuration store components.
-
getNewNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
string new_name = 4;
+
+ the metadata which will be passed to/from configuration store component.
-
getNewNameBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
string new_name = 4;
+
+ the metadata which will be passed to/from configuration store component.
-
getNumber() - Method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
 
-
getNumber() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
-
 
-
getNumber() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
-
 
-
getNumber() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
 
-
getNumber() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
-
 
-
getNumber() - Method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
-
 
-
getOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
-
bool ok = 1;
+
+ the metadata which will be passed to/from configuration store component.
-
getOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
bool ok = 1;
+
+ The metadata which will be passed to state store component.
-
getOk() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem
-
bool ok = 1;
+
+ The metadata which will be passed to state store component.
-
getOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
string old_name = 3;
+
+ The metadata which will be passed to state store component.
-
getOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
string old_name = 3;
+
+ The metadata set by the input binging components.
-
getOldName() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
string old_name = 3;
+
+ The metadata set by the input binging components.
-
getOldNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
-
string old_name = 3;
+
+ The metadata set by the input binging components.
-
getOldNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
-
string old_name = 3;
+
+ The metadata associated with the this bulk request.
-
getOldNameBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
-
string old_name = 3;
+
+ The metadata associated with the this bulk request.
-
getOnBindingEventMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getOnInvokeMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getOnTopicEventMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getOperation() - Method in class io.dapr.client.domain.InvokeBindingRequest
-
 
-
getOperation() - Method in class io.dapr.client.domain.TransactionalStateOperation
-
 
-
getOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
- The name of the operation type for the binding to invoke
+ The metadata associated with the event.
-
getOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
- The name of the operation type for the binding to invoke
+ The metadata associated with the event.
-
getOperation() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- The name of the operation type for the binding to invoke
+ The metadata associated with the event.
-
getOperationBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The name of the operation type for the binding to invoke
+ The metadata associated with the this bulk request.
-
getOperationBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
- The name of the operation type for the binding to invoke
+ The optional properties used for this topic's subscription e.g.
-
getOperationBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
- The name of the operation type for the binding to invoke
+ The optional properties used for this topic's subscription e.g.
-
getOperations() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
-
 
-
getOperations() - Method in class io.dapr.client.domain.TransactionalStateRequest
-
 
-
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The optional properties used for this topic's subscription e.g.
-
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The request level metadata passing to to the pubsub components
-
getOperations(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The request level metadata passing to to the pubsub components
-
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
- Required.
+ The event level metadata passing to the pubsub component
-
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
- Required.
+ The event level metadata passing to the pubsub component
-
getOperations(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
- Required.
+ The event level metadata passing to the pubsub component
-
getOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The request level metadata passing to to the pubsub components
-
getOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
- Required.
+ The metadata which will be sent to app.
-
getOperationsBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to app.
-
getOperationsBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
- Required.
+ The metadata which will be sent to app.
-
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- Required.
+ The metadata used for transactional operations.
-
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- Required.
+ The metadata used for transactional operations.
-
getOperationsCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- Required.
+ The metadata used for transactional operations.
-
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to secret store components.
-
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to secret store components.
-
getOperationsList() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to secret store components.
-
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- Required.
+ The metadata which will be sent to state store components.
-
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- Required.
+ The metadata which will be sent to state store components.
-
getOperationsList() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- Required.
+ The metadata which will be sent to state store components.
-
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ Optional.
-
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ Optional.
-
getOperationsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ Optional.
-
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
- Required.
+ The metadata which will be sent to secret store components.
-
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
- Required.
+ The metadata which will be sent to secret store components.
-
getOperationsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
- Required.
+ The metadata which will be sent to secret store components.
-
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
+
+ The metadata which will be sent to state store components.
-
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
- Required.
+ The metadata which will be sent to app.
-
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
- Required.
+ The metadata which will be sent to app.
-
getOperationsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
- Required.
+ The metadata which will be sent to app.
-
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
string operationType = 1;
+
map<string, string> metadata = 3;
-
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
string operationType = 1;
+
map<string, string> metadata = 3;
-
getOperationType() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
string operationType = 1;
+
map<string, string> metadata = 3;
-
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- The type of operation to be executed
+
map<string, string> metadata = 5;
-
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
- The type of operation to be executed
+
map<string, string> metadata = 5;
-
getOperationType() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- The type of operation to be executed
+
map<string, string> metadata = 5;
-
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
string operationType = 1;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
string operationType = 1;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getOperationTypeBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
string operationType = 1;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
- The type of operation to be executed
+ The metadata returned from an external system
-
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
- The type of operation to be executed
+ The metadata returned from an external system
-
getOperationTypeBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
- The type of operation to be executed
+ The metadata returned from an external system
-
getOptions() - Method in class io.dapr.client.domain.State
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
Retrieve the Options used for saving the state.
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
- Options for concurrency and consistency to save the state.
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getOptions() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
- Options for concurrency and consistency to save the state.
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getOptions() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- Options for concurrency and consistency to save the state.
+
map<string, string> metadata = 3;
-
getOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
- State operation options which includes concurrency/ - consistency/retry_policy.
+
map<string, string> metadata = 3;
-
getOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
- State operation options which includes concurrency/ - consistency/retry_policy.
+
map<string, string> metadata = 3;
-
getOptions() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
- State operation options which includes concurrency/ - consistency/retry_policy.
+ The metadata which will be sent to state store components.
-
getOptionsBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
- Options for concurrency and consistency to save the state.
+ The metadata which will be sent to state store components.
-
getOptionsBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
- State operation options which includes concurrency/ - consistency/retry_policy.
+ The metadata which will be sent to state store components.
-
getOptionsOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- Options for concurrency and consistency to save the state.
+ The metadata which will be sent to app.
-
getOptionsOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- Options for concurrency and consistency to save the state.
+ The metadata which will be sent to app.
-
getOptionsOrBuilder() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- Options for concurrency and consistency to save the state.
+ The metadata which will be sent to app.
-
getOptionsOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- State operation options which includes concurrency/ - consistency/retry_policy.
+ The metadata which will be sent to configuration store components.
-
getOptionsOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getMetadataOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- State operation options which includes concurrency/ - consistency/retry_policy.
+ The metadata which will be sent to configuration store components.
-
getOptionsOrBuilder() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getMetadataOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- State operation options which includes concurrency/ - consistency/retry_policy.
+ The metadata which will be sent to configuration store components.
-
getOrder() - Method in class io.dapr.client.domain.query.Sorting
-
 
-
getPagination() - Method in class io.dapr.client.domain.query.Query
-
 
-
getParallelism() - Method in class io.dapr.client.domain.GetBulkStateRequest
-
 
-
getParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
- The number of parallel operations executed on the state store for a get operation.
+ the metadata which will be passed to/from configuration store component.
-
getParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
- The number of parallel operations executed on the state store for a get operation.
+ the metadata which will be passed to/from configuration store component.
-
getParallelism() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
- The number of parallel operations executed on the state store for a get operation.
+ the metadata which will be passed to/from configuration store component.
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.Etag
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.StateItem
-
 
-
getParserForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
-
 
-
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
 
-
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata which will be passed to state store component.
-
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.CommonProtos.StateItem
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata which will be passed to state store component.
-
getPath() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata which will be passed to state store component.
-
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
- The path used to identify matches for this subscription.
+ The metadata set by the input binging components.
-
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
- The path used to identify matches for this subscription.
+ The metadata set by the input binging components.
-
getPath() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
- The path used to identify matches for this subscription.
+ The metadata set by the input binging components.
-
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata associated with the this bulk request.
-
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata associated with the this bulk request.
-
getPathBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
- The matching path from TopicSubscription/routes (if specified) for this event.
+ The metadata associated with the event.
-
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
- The path used to identify matches for this subscription.
+ The metadata associated with the event.
-
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
- The path used to identify matches for this subscription.
+ The metadata associated with the event.
-
getPathBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The path used to identify matches for this subscription.
+ The metadata associated with the this bulk request.
-
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
string period = 5;
+
+ The optional properties used for this topic's subscription e.g.
-
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
string period = 5;
+
+ The optional properties used for this topic's subscription e.g.
-
getPeriod() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
-
string period = 5;
+
+ The optional properties used for this topic's subscription e.g.
-
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
string period = 5;
+
+ The request level metadata passing to to the pubsub components
-
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
string period = 5;
+
+ The request level metadata passing to to the pubsub components
-
getPeriod() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
-
string period = 5;
+
+ The event level metadata passing to the pubsub component
-
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
-
string period = 5;
+
+ The event level metadata passing to the pubsub component
-
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder
-
string period = 5;
+
+ The event level metadata passing to the pubsub component
-
getPeriodBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
string period = 5;
+
+ The request level metadata passing to to the pubsub components
-
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
string period = 5;
+
+ The metadata which will be sent to app.
-
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
string period = 5;
+
+ The metadata which will be sent to app.
-
getPeriodBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder
-
string period = 5;
+
+ The metadata which will be sent to app.
-
getPublishEventMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getPubsubName() - Method in class io.dapr.client.domain.PublishEventRequest
-
 
-
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- The name of the pubsub the publisher sent to.
+ The metadata which will be sent to state store components.
-
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- The name of the pubsub the publisher sent to.
+ The metadata which will be sent to state store components.
-
getPubsubName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
- The name of the pubsub the publisher sent to.
+ The metadata which will be sent to state store components.
-
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- Required.
+ The metadata used for transactional operations.
-
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- Required.
+ The metadata used for transactional operations.
-
getPubsubName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- Required.
-
-
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
-
- The name of the pubsub component
-
-
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
-
- The name of the pubsub component
-
-
getPubsubName() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
-
-
- The name of the pubsub component
-
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
-
-
- The name of the pubsub the publisher sent to.
+ The metadata used for transactional operations.
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
- The name of the pubsub the publisher sent to.
+ The metadata which will be sent to secret store components.
-
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
- The name of the pubsub the publisher sent to.
+ The metadata which will be sent to secret store components.
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
- Required.
+ The metadata which will be sent to secret store components.
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
- Required.
+ The metadata which will be sent to state store components.
-
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
- Required.
+ The metadata which will be sent to state store components.
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
- The name of the pubsub component
+ The metadata which will be sent to state store components.
-
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
- The name of the pubsub component
+ Optional.
-
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
- The name of the pubsub component
+ Optional.
-
getQuery() - Method in class io.dapr.client.domain.QueryStateRequest
-
 
-
getQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
- The query in JSON format.
+ Optional.
-
getQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
- The query in JSON format.
+ The metadata which will be sent to secret store components.
-
getQuery() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
- The query in JSON format.
+ The metadata which will be sent to secret store components.
-
getQueryBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
- The query in JSON format.
+ The metadata which will be sent to secret store components.
-
getQueryBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
- The query in JSON format.
+ The metadata which will be sent to state store components.
-
getQueryBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
- The query in JSON format.
+ The metadata which will be sent to state store components.
-
getQueryParams() - Method in class io.dapr.client.domain.HttpExtension
-
 
-
getQueryStateAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
- Optional.
+ The metadata which will be sent to state store components.
-
getQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
- Optional.
+ The metadata which will be sent to app.
-
getQuerystring() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
- Optional.
+ The metadata which will be sent to app.
-
getQueryString() - Method in class io.dapr.client.domain.QueryStateRequest
-
 
-
getQuerystringBytes() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder
- Optional.
+ The metadata which will be sent to app.
-
getQuerystringBytes() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
- Optional.
+
map<string, string> metadata = 3;
-
getQuerystringBytes() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
-
- Optional.
+
map<string, string> metadata = 3;
-
getRegisterActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getRegisterActorTimerMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 3;
-
getRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 5;
-
getRegisteredComponents(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 5;
-
getRegisteredComponentsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 5;
-
getRegisteredComponentsBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getRegisteredComponentsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getRegisteredComponentsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to output binding components + Common metadata property: + - ttlInSeconds : the time to live in seconds for the message.
-
getRegisteredComponentsCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata returned from an external system
-
getRegisteredComponentsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata returned from an external system
-
getRegisteredComponentsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata returned from an external system
-
getRegisteredComponentsList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getRegisteredComponentsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getRegisteredComponentsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata passing to pub components + metadata property: + - key : the key of the message.
-
getRegisteredComponentsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 3;
-
getRegisteredComponentsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 3;
-
getRegisteredComponentsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
map<string, string> metadata = 3;
-
getRegisteredComponentsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
-
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
+
+ The metadata which will be sent to state store components.
-
getRemindersStoragePartitions() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
Gets the number of storage partitions for Actor reminders.
+
+ The metadata which will be sent to state store components.
-
getRenameActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getRepresentation() - Method in class io.dapr.client.domain.query.filters.AndFilter
-
 
-
getRepresentation() - Method in class io.dapr.client.domain.query.filters.EqFilter
-
 
-
getRepresentation() - Method in class io.dapr.client.domain.query.filters.Filter
-
 
-
getRepresentation() - Method in class io.dapr.client.domain.query.filters.InFilter
-
 
-
getRepresentation() - Method in class io.dapr.client.domain.query.filters.OrFilter
-
 
-
getRequest() - Method in class io.dapr.client.domain.TransactionalStateOperation
-
 
-
getRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
- State values to be operated on
+ The metadata which will be sent to state store components.
-
getRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- State values to be operated on
+ The metadata which will be sent to app.
-
getRequest() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- State values to be operated on
+ The metadata which will be sent to app.
-
getRequestBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- State values to be operated on
+ The metadata which will be sent to app.
-
getRequestOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
- State values to be operated on
+ The metadata which will be sent to configuration store components.
-
getRequestOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getMetadataOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
- State values to be operated on
+ The metadata which will be sent to configuration store components.
-
getRequestOrBuilder() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
getMetadataOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
- State values to be operated on
+ The metadata which will be sent to configuration store components.
-
getResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getMethod() - Method in class io.dapr.client.domain.HttpExtension
+
 
+
getMethod() - Method in class io.dapr.client.domain.InvokeMethodRequest
+
 
+
getMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
Required.
-
getResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getMethod() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
Required.
-
getResourceId() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getMethod() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
Required.
-
getResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- resource_id is the lock key.
+
string method = 3;
-
getResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getMethod() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
- resource_id is the lock key.
+
string method = 3;
-
getResourceId() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getMethod() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- resource_id is the lock key.
+
string method = 3;
-
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getMethodBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
Required.
-
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getMethodBytes() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
Required.
-
getResourceIdBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getMethodBytes() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
Required.
-
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getMethodBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- resource_id is the lock key.
+
string method = 3;
-
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getMethodBytes() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
- resource_id is the lock key.
+
string method = 3;
-
getResourceIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getMethodBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder
-
- resource_id is the lock key.
+
string method = 3;
-
getResults() - Method in class io.dapr.client.domain.QueryStateResponse
-
 
-
getResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMethodName() - Method in class io.dapr.actors.runtime.ActorMethodContext
-
- An array of query results.
+
Gets the name of the method invoked by actor runtime.
-
getResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMutableData() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
-
- An array of query results.
+
Deprecated.
-
getResults(int) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMutableData() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableExtendedMetadata() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableItems() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableItems() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMutableMetadata() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsList() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
- An array of query results.
+
Deprecated.
-
getResultsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
-
- An array of query results.
+
Deprecated.
-
getRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutesOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutesOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRoutesOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
- The optional routing rules to match against.
+
Deprecated.
-
getRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRules(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getMutableMetadata() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getMutableOptions() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getMutableSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
-
- The list of rules for this topic.
+
Deprecated.
-
getRulesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getName() - Method in class io.dapr.client.domain.InvokeBindingRequest
+
 
+
getName() - Method in class io.dapr.client.domain.query.filters.Filter
+
 
+
getName() - Method in class io.dapr.config.Property
-
- The list of rules for this topic.
+
Gets the Java property's name.
-
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
- The list of rules for this topic.
+ Required.
-
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
- The list of rules for this topic.
+ Required.
-
getRulesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
- The list of rules for this topic.
+ Required.
-
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
getName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
- The list of rules for this topic.
+ The name of the output binding to invoke.
-
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getName() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
- The list of rules for this topic.
+ The name of the output binding to invoke.
-
getRulesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
+
getName() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
- The list of rules for this topic.
+ The name of the output binding to invoke.
-
getSaveStateMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getSecret(GetSecretRequest) - Method in interface io.dapr.client.DaprClient
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
-
Fetches a secret from the configured vault.
+
string name = 3;
-
getSecret(GetSecretRequest) - Method in class io.dapr.client.DaprClientGrpc
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
-
Fetches a secret from the configured vault.
+
string name = 3;
-
getSecret(GetSecretRequest) - Method in class io.dapr.client.DaprClientHttp
+
getName() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
-
Fetches a secret from the configured vault.
+
string name = 3;
-
getSecret(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
-
- Gets secrets from secret stores.
+
string name = 3;
-
getSecret(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
-
- Gets secrets from secret stores.
-
-
getSecret(DaprProtos.GetSecretRequest, StreamObserver<DaprProtos.GetSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
-
-
- Gets secrets from secret stores.
-
-
getSecret(DaprProtos.GetSecretRequest, StreamObserver<DaprProtos.GetSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
-
-
- Gets secrets from secret stores.
+
string name = 3;
-
getSecret(String, String) - Method in class io.dapr.client.DaprClientGrpc
+
getName() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
-
Fetches a secret from the configured vault.
+
string name = 3;
-
getSecret(String, String) - Method in interface io.dapr.client.DaprClient
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
-
Fetches a secret from the configured vault.
+
string name = 1;
-
getSecret(String, String, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
+
getName() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
-
Fetches a secret from the configured vault.
+
string name = 1;
-
getSecret(String, String, Map<String, String>) - Method in interface io.dapr.client.DaprClient
+
getName() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
-
Fetches a secret from the configured vault.
+
string name = 1;
-
GetSecretRequest - Class in io.dapr.client.domain
+
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
-
A request to get a secret by key.
+
string name = 3;
-
GetSecretRequest(String, String) - Constructor for class io.dapr.client.domain.GetSecretRequest
+
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
-
Constructor for GetSecretRequest.
+
string name = 3;
-
getSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getName() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
-
Deprecated.
+
string name = 3;
-
getSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
-
Deprecated.
+
string name = 3;
-
getSecrets() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
getName() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
-
Deprecated.
+
string name = 3;
-
getSecretsCount() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
-
 
-
getSecretsCount() - Method in class io.dapr.v1.DaprProtos.SecretResponse
-
 
-
getSecretsCount() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
getName() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
-
map<string, string> secrets = 1;
+
string name = 3;
-
getSecretsMap() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
-
map<string, string> secrets = 1;
+
+ Required.
-
getSecretsMap() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
map<string, string> secrets = 1;
+
+ Required.
-
getSecretsMap() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
getNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder
-
map<string, string> secrets = 1;
+
+ Required.
-
getSecretsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
map<string, string> secrets = 1;
+
+ The name of the output binding to invoke.
-
getSecretsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
map<string, string> secrets = 1;
+
+ The name of the output binding to invoke.
-
getSecretsOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
map<string, string> secrets = 1;
+
+ The name of the output binding to invoke.
-
getSecretsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
-
map<string, string> secrets = 1;
+
string name = 3;
-
getSecretsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
-
map<string, string> secrets = 1;
+
string name = 3;
-
getSecretsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
-
map<string, string> secrets = 1;
+
string name = 3;
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.Etag
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.StateItem
-
 
-
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.StateOptions
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SecretResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
-
 
-
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
 
-
getServiceDescriptor() - Static method in class io.dapr.v1.AppCallbackGrpc
-
 
-
getServiceDescriptor() - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
-
 
-
getServiceDescriptor() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getSetMetadataMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getShutdownMethod() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getSort() - Method in class io.dapr.client.domain.query.Query
-
 
-
getSource() - Method in class io.dapr.client.domain.CloudEvent
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
-
Gets the event's source.
+
string name = 3;
-
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
-
- source identifies the context in which an event happened.
+
string name = 3;
-
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
-
- source identifies the context in which an event happened.
+
string name = 3;
-
getSource() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
-
- source identifies the context in which an event happened.
+
string name = 1;
-
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
-
- source identifies the context in which an event happened.
+
string name = 1;
-
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
-
- source identifies the context in which an event happened.
+
string name = 1;
-
getSourceBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
-
- source identifies the context in which an event happened.
+
string name = 3;
-
getSpecversion() - Method in class io.dapr.client.domain.CloudEvent
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
-
Gets the version of the specification.
+
string name = 3;
-
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder
-
- The version of the CloudEvents specification.
+
string name = 3;
-
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
-
- The version of the CloudEvents specification.
+
string name = 3;
-
getSpecVersion() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getNameBytes() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
-
- The version of the CloudEvents specification.
+
string name = 3;
-
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder
-
- The version of the CloudEvents specification.
+
string name = 3;
-
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
-
- The version of the CloudEvents specification.
+
string new_name = 4;
-
getSpecVersionBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getNewName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
- The version of the CloudEvents specification.
+
string new_name = 4;
-
getState(GetStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getNewName() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
-
Retrieve a State based on their key.
+
string new_name = 4;
-
getState(GetStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getNewNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
-
Retrieve a State based on their key.
+
string new_name = 4;
-
getState(GetStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
getNewNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
Retrieve a State based on their key.
+
string new_name = 4;
-
getState(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
getNewNameBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
-
- Gets the state for a specific key.
+
string new_name = 4;
-
getState(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
getNumber() - Method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
 
+
getNumber() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
 
+
getNumber() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
 
+
getNumber() - Method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
 
+
getNumber() - Method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
+
 
+
getNumber() - Method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
 
+
getNumber() - Method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
 
+
getOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
-
- Gets the state for a specific key.
+
bool ok = 1;
-
getState(DaprProtos.GetStateRequest, StreamObserver<DaprProtos.GetStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
getOk() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
-
- Gets the state for a specific key.
+
bool ok = 1;
-
getState(DaprProtos.GetStateRequest, StreamObserver<DaprProtos.GetStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
getOk() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder
-
- Gets the state for a specific key.
+
bool ok = 1;
-
getState(String, State<T>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, State<T>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getOldName() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, State<T>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOldName() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, State<T>, Class<T>) - Method in interface io.dapr.client.DaprClient
+
getOldNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, String, StateOptions, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOldNameBytes() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, String, StateOptions, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getOldNameBytes() - Method in interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder
-
Retrieve a State based on their key.
+
string old_name = 3;
-
getState(String, String, StateOptions, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOnBindingEventMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getOnBulkTopicEventAlpha1Method() - Static method in class io.dapr.v1.AppCallbackAlphaGrpc
+
 
+
getOnInvokeMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getOnTopicEventMethod() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getOperation() - Method in class io.dapr.client.domain.InvokeBindingRequest
+
 
+
getOperation() - Method in class io.dapr.client.domain.TransactionalStateOperation
+
 
+
getOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getState(String, String, StateOptions, Class<T>) - Method in interface io.dapr.client.DaprClient
+
getOperation() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getState(String, String, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOperation() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getState(String, String, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
getOperationBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getState(String, String, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
getOperationBytes() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getState(String, String, Class<T>) - Method in interface io.dapr.client.DaprClient
+
getOperationBytes() - Method in interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder
-
Retrieve a State based on their key.
+
+ The name of the operation type for the binding to invoke
-
getStateOptions() - Method in class io.dapr.client.domain.DeleteStateRequest
+
getOperations() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
 
-
getStateOptions() - Method in class io.dapr.client.domain.GetStateRequest
+
getOperations() - Method in class io.dapr.client.domain.TransactionalStateRequest
 
-
getStateOptionsAsMap() - Method in class io.dapr.client.domain.StateOptions
+
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
Returns state options as a Map of option name to value.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
GetStateRequest - Class in io.dapr.client.domain
+
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
A request to get a state by key.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
GetStateRequest(String, String) - Constructor for class io.dapr.client.domain.GetStateRequest
+
getOperations(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
-
Constructor for GetStateRequest.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStates() - Method in class io.dapr.client.domain.SaveStateRequest
-
 
-
getStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The state key values which will be stored in store_name.
+ Required.
-
getStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- The state key values which will be stored in store_name.
+ Required.
-
getStates(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getOperations(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The state key values which will be stored in store_name.
+ Required.
-
getStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getOperationsBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The array of the state key values.
+ Required.
-
getStates(int) - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getOperationsBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationsBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The array of the state key values.
+ Required.
-
getStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStates(int) - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationsCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
-
- The state key values which will be stored in store_name.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The array of the state key values.
+ Required.
-
getStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationsCount() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- The array of the state key values.
+ Required.
-
getStatesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationsCount() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The state key values which will be stored in store_name.
+ Required.
-
getStatesBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationsList() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
-
- The state key values which will be stored in store_name.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The state key values which will be stored in store_name.
+ Required.
-
getStatesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getOperationsList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- The state key values which will be stored in store_name.
+ Required.
-
getStatesCount() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationsList() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The array of the state key values.
+ Required.
-
getStatesCount() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesCount() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesCount() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesCount() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The array of the state key values.
+ Required.
-
getStatesCount() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getOperationsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- The array of the state key values.
+ Required.
-
getStatesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The state key values which will be stored in store_name.
+ Required.
-
getStatesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
-
- The state key values which will be stored in store_name.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
-
- The state key values which will be stored in store_name.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
-
- The array of the state key values.
+
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
getStatesList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
- The array of the state key values.
+ Required.
-
getStatesList() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getOperationsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
- The array of the state key values.
+ Required.
-
getStatesList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
- The array of the state key values.
+ Required.
-
getStatesList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
- The array of the state key values.
+
string operationType = 1;
-
getStatesList() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
- The array of the state key values.
+
string operationType = 1;
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationType() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
-
- The state key values which will be stored in store_name.
+
string operationType = 1;
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- The state key values which will be stored in store_name.
+ The type of operation to be executed
-
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getOperationType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
- The state key values which will be stored in store_name.
+ The type of operation to be executed
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOperationType() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
- The array of the state key values.
+ The type of operation to be executed
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
- The array of the state key values.
+
string operationType = 1;
-
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
-
- The array of the state key values.
+
string operationType = 1;
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOperationTypeBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
-
- The array of the state key values.
+
string operationType = 1;
-
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- The array of the state key values.
+ The type of operation to be executed
-
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getOperationTypeBytes() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
- The array of the state key values.
+ The type of operation to be executed
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getOperationTypeBytes() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
- The state key values which will be stored in store_name.
+ The type of operation to be executed +
+
getOptions() - Method in class io.dapr.client.domain.State
+
+
Retrieve the Options used for saving the state.
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- The state key values which will be stored in store_name.
+ Options for concurrency and consistency to save the state.
-
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getOptions() - Method in class io.dapr.v1.CommonProtos.StateItem
- The state key values which will be stored in store_name.
+ Options for concurrency and consistency to save the state.
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getOptions() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
- The array of the state key values.
+ Options for concurrency and consistency to save the state.
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- The array of the state key values.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- The array of the state key values.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getOptions() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
- The array of the state key values.
+ State operation options which includes concurrency/ + consistency/retry_policy. +
+
getOptions() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
Deprecated.
+
+
getOptions() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
Deprecated.
-
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getOptions() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
Deprecated.
+
+
getOptionsBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- The array of the state key values.
+ Options for concurrency and consistency to save the state.
-
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getOptionsBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- The array of the state key values.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStateStoreName() - Method in class io.dapr.client.domain.DeleteStateRequest
+
getOptionsCount() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
getStateStoreName() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
getOptionsCount() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
getStateType() - Method in interface io.dapr.actors.runtime.Remindable
+
getOptionsCount() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
Gets the type for state object.
+
map<string, string> options = 4;
-
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
getOptionsMap() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
- The list of output bindings.
+
map<string, string> options = 4;
-
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getOptionsMap() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
-
- The list of output bindings.
+
map<string, string> options = 4;
-
getStatus() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder
+
getOptionsMap() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
- The list of output bindings.
+
map<string, string> options = 4;
-
getStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
getOptionsOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+ Options for concurrency and consistency to save the state.
-
getStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getOptionsOrBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+ Options for concurrency and consistency to save the state.
-
getStatus() - Method in interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder
+
getOptionsOrBuilder() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+ Options for concurrency and consistency to save the state.
-
getStatusCode() - Method in class io.dapr.client.DaprHttp.Response
-
 
-
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
getOptionsOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- The list of output bindings.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getOptionsOrBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
- The list of output bindings.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStatusValue() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder
+
getOptionsOrBuilder() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
- The list of output bindings.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
getStatusValue() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
getOptionsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
map<string, string> options = 4;
-
getStatusValue() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getOptionsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
map<string, string> options = 4;
-
getStatusValue() - Method in interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder
+
getOptionsOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
-
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
map<string, string> options = 4;
+
+
getOptionsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
map<string, string> options = 4;
+
+
getOptionsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
map<string, string> options = 4;
+
+
getOptionsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
map<string, string> options = 4;
+
+
getOrder() - Method in class io.dapr.client.domain.query.Sorting
+
 
+
getPagination() - Method in class io.dapr.client.domain.query.Query
+
 
+
getParallelism() - Method in class io.dapr.client.domain.GetBulkStateRequest
+
 
+
getParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
+
+ The number of parallel operations executed on the state store for a get operation.
+
+
getParallelism() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
+
+ The number of parallel operations executed on the state store for a get operation.
+
+
getParallelism() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
+
+ The number of parallel operations executed on the state store for a get operation.
-
getStoreName() - Method in class io.dapr.client.domain.GetBulkSecretRequest
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
getParserForType() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.GetBulkStateRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.GetConfigurationRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.GetSecretRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.GetStateRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
getStoreName() - Method in class io.dapr.client.domain.QueryStateRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.SaveStateRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getStoreName() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
getStoreName() - Method in class io.dapr.client.domain.UnsubscribeConfigurationRequest
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
getStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
getParserForType() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The name of state store where states are saved.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The name of state store where states are saved.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getPath() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The name of state store where states are saved.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getPath() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
- The name of state store.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getPath() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
- The name of state store.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getPath() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
- The name of state store.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getPath() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
-
- Required.
+
string path = 2;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getPath() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
-
- Required.
+
string path = 2;
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getPath() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder
-
- Required.
+
string path = 2;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The name of secret store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The name of secret store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getPathBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The name of secret store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getPathBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The name of state store.
+ The matching path from TopicSubscription/routes (if specified) for this event.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
- Required.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getPathBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
- Required.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getPathBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder
- Required.
+ The path used to identify matches for this subscription.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getPathBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
-
- The name of secret store.
+
string path = 2;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getPathBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
-
- The name of secret store.
+
string path = 2;
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getPathBytes() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder
-
- The name of secret store.
+
string path = 2;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
-
- The name of state store.
+
string period = 5;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
-
- The name of state store.
+
string period = 5;
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getPeriod() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
-
- The name of state store.
+
string period = 5;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
-
- The name of state store.
+
string period = 5;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getPeriod() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
-
- The name of state store.
+
string period = 5;
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getPeriod() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
-
- The name of state store.
+
string period = 5;
+
+
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
+
string period = 5;
+
+
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
+
string period = 5;
+
+
getPeriodBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
+
string period = 5;
+
+
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string period = 5;
+
+
getPeriodBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
+
string period = 5;
+
+
getPeriodBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
+
string period = 5;
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getPublishEventMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getPubsubName() - Method in class io.dapr.client.domain.BulkPublishRequest
+
 
+
getPubsubName() - Method in class io.dapr.client.domain.PublishEventRequest
+
 
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The name of configuration store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The name of configuration store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The name of configuration store.
+ The name of the pubsub the publisher sent to.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getPubsubName() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
Required.
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
Required.
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
-
string store_name = 1;
+
+ The name of the pubsub component
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
-
string store_name = 1;
+
+ The name of the pubsub component
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
-
string store_name = 1;
+
+ The name of the pubsub component
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
- The name of configuration store.
+ The name of the pubsub component
-
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
- The name of configuration store.
+ The name of the pubsub component
-
getStoreName() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
- The name of configuration store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- The name of state store where states are saved.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getPubsubName() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
- The name of state store where states are saved.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getPubsubName() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
- The name of state store where states are saved.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- The name of state store.
+ The name of the pubsub the publisher sent to.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
Required.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
Required.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
- The name of secret store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
- The name of secret store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
- The name of secret store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
- The name of state store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
- The name of state store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
- The name of state store.
+ The name of the pubsub component
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- Required.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getPubsubNameBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
- Required.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
getPubsubNameBytes() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
- Required.
+
string pubsub_name = 1;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
getQuery() - Method in class io.dapr.client.domain.QueryStateRequest
+
 
+
getQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
- The name of secret store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getQuery() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
- The name of secret store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
getQuery() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
- The name of secret store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
getQueryBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
- The name of state store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getQueryBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
- The name of state store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
getQueryBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
- The name of state store.
+ The query in JSON format.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
getQueryParams() - Method in class io.dapr.client.domain.HttpExtension
+
 
+
getQueryStateAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getQuerystring() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
getQuerystring() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
getQueryString() - Method in class io.dapr.client.domain.QueryStateRequest
+
 
+
getQuerystringBytes() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getQuerystringBytes() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
getQuerystringBytes() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
- The name of state store.
+ Optional.
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
getRegisterActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getRegisterActorTimerMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
getRegisteredComponents(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
getRegisteredComponentsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- Required.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getRegisteredComponentsBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- Required.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
getRegisteredComponentsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- Required.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
getRegisteredComponentsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
string store_name = 1;
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getRegisteredComponentsCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
string store_name = 1;
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
getRegisteredComponentsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
string store_name = 1;
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
getRegisteredComponentsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getRegisteredComponentsList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
getRegisteredComponentsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The name of configuration store.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscribeConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getSubscriptionId() - Method in class io.dapr.client.domain.SubscribeConfigurationResponse
-
 
-
getSubscriptionId() - Method in class io.dapr.client.domain.UnsubscribeConfigurationRequest
-
 
-
getSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRegisteredComponentsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The list of topics.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getRegisteredComponentsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The list of topics.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscriptions(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
getRegisteredComponentsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
-
- The list of topics.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRegisteredComponentsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
- The list of topics.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscriptionsBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRegisteredComponentsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
-
- The list of topics.
+
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
getSubscriptionsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRemindersStoragePartitions() - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
-
- The list of topics.
+
Gets the number of storage partitions for Actor reminders.
-
getSubscriptionsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getRenameActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getRepresentation() - Method in class io.dapr.client.domain.query.filters.AndFilter
+
 
+
getRepresentation() - Method in class io.dapr.client.domain.query.filters.EqFilter
+
 
+
getRepresentation() - Method in class io.dapr.client.domain.query.filters.Filter
+
 
+
getRepresentation() - Method in class io.dapr.client.domain.query.filters.InFilter
+
 
+
getRepresentation() - Method in class io.dapr.client.domain.query.filters.OrFilter
+
 
+
getRequest() - Method in class io.dapr.client.domain.TransactionalStateOperation
+
 
+
getRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- The list of topics.
+ State values to be operated on
-
getSubscriptionsCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
getRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
- The list of topics.
+ State values to be operated on
-
getSubscriptionsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRequest() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
- The list of topics.
+ State values to be operated on
-
getSubscriptionsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getRequestBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- The list of topics.
+ State values to be operated on
-
getSubscriptionsList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
getRequestOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- The list of topics.
+ State values to be operated on
-
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getRequestOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
- The list of topics.
+ State values to be operated on
-
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getRequestOrBuilder() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
- The list of topics.
+ State values to be operated on
-
getSubscriptionsOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
getResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
- The list of topics.
+ Required.
-
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
getResourceId() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
- The list of topics.
+ Required.
-
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getResourceId() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
- The list of topics.
+ Required.
-
getSubscriptionsOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
getResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
- The list of topics.
+ resource_id is the lock key.
-
getSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
getResourceId() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
-
bool success = 1;
+
+ resource_id is the lock key.
-
getSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
getResourceId() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
-
bool success = 1;
+
+ resource_id is the lock key.
-
getSuccess() - Method in interface io.dapr.v1.DaprProtos.TryLockResponseOrBuilder
+
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
-
bool success = 1;
+
+ Required.
-
getTo(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
- The list of output bindings.
+ Required.
-
getTo(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getResourceIdBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
- The list of output bindings.
+ Required.
-
getTo(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
- The list of output bindings.
+ resource_id is the lock key.
-
getToBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getResourceIdBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
- The list of output bindings.
+ resource_id is the lock key.
-
getToBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getResourceIdBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
- The list of output bindings.
+ resource_id is the lock key.
-
getToBytes(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getResults() - Method in class io.dapr.client.domain.QueryStateResponse
+
 
+
getResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- The list of output bindings.
+ An array of query results.
-
getToCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- The list of output bindings.
+ An array of query results.
-
getToCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getResults(int) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- The list of output bindings.
+ An array of query results.
-
getToCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getResultsBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- The list of output bindings.
+ An array of query results.
-
getToken() - Method in class io.dapr.client.domain.query.Pagination
-
 
-
getToken() - Method in class io.dapr.client.domain.QueryStateResponse
-
 
-
getToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getResultsBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- Pagination token.
+ An array of query results.
-
getToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getResultsCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- Pagination token.
+ An array of query results.
-
getToken() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getResultsCount() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- Pagination token.
+ An array of query results.
-
getTokenBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
getResultsCount() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- Pagination token.
+ An array of query results.
-
getTokenBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getResultsList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- Pagination token.
+ An array of query results.
-
getTokenBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
getResultsList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- Pagination token.
+ An array of query results.
-
getToList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
getResultsList() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- The list of output bindings.
+ An array of query results.
-
getToList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getResultsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- The list of output bindings.
+ An array of query results.
-
getToList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
getResultsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- The list of output bindings.
+ An array of query results.
-
getTopic() - Method in class io.dapr.client.domain.PublishEventRequest
-
 
-
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getResultsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- The pubsub topic which publisher sent to.
+ An array of query results.
-
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getResultsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
- The pubsub topic which publisher sent to.
+ An array of query results.
-
getTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getResultsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
- The pubsub topic which publisher sent to.
+ An array of query results.
-
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getResultsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
- Required.
+ An array of query results.
-
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
- Required.
+ The optional routing rules to match against.
-
getTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
- Required.
+ The optional routing rules to match against.
-
getTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getRoutes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
- The pubsub topic
+ The optional routing rules to match against.
-
getTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getRoutesBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
- The pubsub topic
+ The optional routing rules to match against.
-
getTopic() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getRoutesOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
- The pubsub topic
+ The optional routing rules to match against.
-
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getRoutesOrBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
- The pubsub topic which publisher sent to.
+ The optional routing rules to match against.
-
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getRoutesOrBuilder() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
- The pubsub topic which publisher sent to.
+ The optional routing rules to match against. +
+
getRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
getRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
getRules() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
-
getTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
- The pubsub topic which publisher sent to.
+ The list of rules for this topic.
-
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
getRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
- Required.
+ The list of rules for this topic.
-
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getRules(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
- Required.
+ The list of rules for this topic. +
+
getRules(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
getRules(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRules(int) - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRulesBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
getRulesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
- Required.
+ The list of rules for this topic.
-
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
getRulesBuilder(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRulesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
- The pubsub topic
+ The list of rules for this topic.
-
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getRulesBuilderList() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRulesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
- The pubsub topic
+ The list of rules for this topic.
-
getTopicBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
getRulesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
- The pubsub topic
+ The list of rules for this topic.
-
getTryLockAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
-
 
-
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getRulesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
-
string ttl = 7;
+
+ The list of rules for this topic.
-
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getRulesCount() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
-
string ttl = 7;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtl() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getRulesCount() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
-
string ttl = 7;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getRulesCount() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder
-
string ttl = 8;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getRulesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
-
string ttl = 8;
+
+ The list of rules for this topic.
-
getTtl() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getRulesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
-
string ttl = 8;
+
+ The list of rules for this topic.
-
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
getRulesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
-
string ttl = 7;
+
+ The list of rules for this topic.
-
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getRulesList() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
-
string ttl = 7;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtlBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
getRulesList() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
-
string ttl = 7;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
getRulesList() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder
-
string ttl = 8;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getRulesOrBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
string ttl = 8;
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
-
getTtlBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
getRulesOrBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
-
string ttl = 8;
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
-
getType() - Method in class io.dapr.client.domain.CloudEvent
+
getRulesOrBuilder() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
-
Gets the envelope type.
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
-
getType() - Method in class io.dapr.utils.TypeRef
+
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
-
Gets the type referenced.
+
+ The list of rules for this topic.
-
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
- The type of event related to the originating occurrence.
+ The list of rules for this topic.
-
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getRulesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
- The type of event related to the originating occurrence.
+ The list of rules for this topic. +
+
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRulesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
getRulesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
- The type of event related to the originating occurrence.
+ The list of rules for this topic.
-
getType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
-
string type = 1;
+
+ The list of rules for this topic.
-
getType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getRulesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder
-
string type = 1;
+
+ The list of rules for this topic.
-
getType() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
+
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
-
string type = 1;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getRulesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
-
string type = 2;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getRulesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder
-
string type = 2;
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
-
getType() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getSaveStateMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getSdkVersion() - Static method in class io.dapr.utils.Version
-
string type = 2;
+
Retrieves sdk version from resources.
+
+
getSecret(GetSecretRequest) - Method in interface io.dapr.client.DaprClient
+
+
Fetches a secret from the configured vault.
+
+
getSecret(GetSecretRequest) - Method in class io.dapr.client.DaprClientGrpc
+
+
Fetches a secret from the configured vault.
-
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
getSecret(GetSecretRequest) - Method in class io.dapr.client.DaprClientHttp
+
+
Deprecated.
+
Fetches a secret from the configured vault.
+
+
getSecret(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
- The type of event related to the originating occurrence.
+ Gets secrets from secret stores.
-
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getSecret(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
- The type of event related to the originating occurrence.
+ Gets secrets from secret stores.
-
getTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
getSecret(DaprProtos.GetSecretRequest, StreamObserver<DaprProtos.GetSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
- The type of event related to the originating occurrence.
+ Gets secrets from secret stores.
-
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
getSecret(DaprProtos.GetSecretRequest, StreamObserver<DaprProtos.GetSecretResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
-
string type = 1;
+
+ Gets secrets from secret stores.
-
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getSecret(String, String) - Method in interface io.dapr.client.DaprClient
-
string type = 1;
+
Fetches a secret from the configured vault.
-
getTypeBytes() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
+
getSecret(String, String, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
string type = 1;
+
Fetches a secret from the configured vault.
-
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
GetSecretRequest - Class in io.dapr.client.domain
-
string type = 2;
+
A request to get a secret by key.
-
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
GetSecretRequest(String, String) - Constructor for class io.dapr.client.domain.GetSecretRequest
-
string type = 2;
+
Constructor for GetSecretRequest.
-
getTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
-
string type = 2;
+
Deprecated.
+
+
getSecrets() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
+
Deprecated.
+
+
getSecrets() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
+
Deprecated.
+
+
getSecretsCount() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
getSecretsCount() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
getSecretsCount() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
+
map<string, string> secrets = 1;
+
+
getSecretsMap() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
+
map<string, string> secrets = 1;
+
+
getSecretsMap() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
+
map<string, string> secrets = 1;
+
+
getSecretsMap() - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
+
map<string, string> secrets = 1;
+
+
getSecretsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
+
map<string, string> secrets = 1;
+
+
getSecretsOrDefault(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
+
map<string, string> secrets = 1;
+
+
getSecretsOrDefault(String, String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
+
map<string, string> secrets = 1;
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getSecretsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
+
map<string, string> secrets = 1;
+
+
getSecretsOrThrow(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
+
map<string, string> secrets = 1;
+
+
getSecretsOrThrow(String) - Method in interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder
+
+
map<string, string> secrets = 1;
+
+
getSeq() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Sequence number.
+
+
getSeq() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
+
+ Sequence number.
+
+
getSeq() - Method in interface io.dapr.v1.CommonProtos.StreamPayloadOrBuilder
+
+
+ Sequence number.
+
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
getSerializedSize() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.Etag
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
getUnlockAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
getUnregisterActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
getUnregisterActorTimerMethod() - Static method in class io.dapr.v1.DaprGrpc
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
getUnsubscribeConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
getValue() - Method in class io.dapr.client.domain.ConfigurationItem
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
getValue() - Method in class io.dapr.client.domain.query.filters.EqFilter
+
getSerializedSize() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
getValue() - Method in enum class io.dapr.client.domain.query.Sorting.Order
+
getServiceDescriptor() - Static method in class io.dapr.v1.AppCallbackAlphaGrpc
 
-
getValue() - Method in class io.dapr.client.domain.QueryStateItem
+
getServiceDescriptor() - Static method in class io.dapr.v1.AppCallbackGrpc
+
 
+
getServiceDescriptor() - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
 
+
getServiceDescriptor() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getSetMetadataMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getShutdownMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getSort() - Method in class io.dapr.client.domain.query.Query
+
 
+
getSource() - Method in class io.dapr.client.domain.CloudEvent
-
Retrieves the Value of the state.
+
Gets the event's source.
-
getValue() - Method in class io.dapr.client.domain.State
+
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
-
Retrieves the Value of the state.
+
+ source identifies the context in which an event happened.
-
getValue() - Method in enum class io.dapr.client.domain.StateOptions.Concurrency
-
 
-
getValue() - Method in enum class io.dapr.client.domain.StateOptions.Consistency
-
 
-
getValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getSource() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
getSource() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- value sets the etag value
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.CommonProtos.Etag
+
getSource() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- value sets the etag value
+ source identifies the context in which an event happened.
-
getValue() - Method in interface io.dapr.v1.CommonProtos.EtagOrBuilder
+
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- value sets the etag value
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.CommonProtos.StateItem
+
getSourceBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- Required.
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getSourceBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
string value = 2;
+
+ source identifies the context in which an event happened.
-
getValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getSourceBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
-
string value = 2;
+
+ source identifies the context in which an event happened.
-
getValue() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
getSpecversion() - Method in class io.dapr.client.domain.CloudEvent
-
string value = 2;
+
Gets the version of the specification.
-
getValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
-
.google.protobuf.Any value = 3;
+
+ The version of the CloudEvents specification.
-
getValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
-
.google.protobuf.Any value = 3;
+
+ The version of the CloudEvents specification.
-
getValue() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
getSpecVersion() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
-
.google.protobuf.Any value = 3;
+
+ The version of the CloudEvents specification.
-
getValueBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
-
.google.protobuf.Any value = 3;
+
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getSpecVersion() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
- Required.
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getSpecVersion() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
- Required.
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- Required.
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
- value sets the etag value
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.CommonProtos.Etag
+
getSpecVersionBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
- value sets the etag value
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in interface io.dapr.v1.CommonProtos.EtagOrBuilder
+
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
- value sets the etag value
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
getSpecVersionBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
string value = 2;
+
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
getSpecVersionBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
-
string value = 2;
+
+ The version of the CloudEvents specification.
-
getValueBytes() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
getStartTime() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
-
string value = 2;
+
int64 start_time = 2;
-
getValueDescriptor() - Method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
 
-
getValueDescriptor() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
-
 
-
getValueDescriptor() - Method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
-
 
-
getValueDescriptor() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
getStartTime() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
+
int64 start_time = 2;
+
+
getStartTime() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder
+
+
int64 start_time = 2;
+
+
getStartWorkflowAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
 
-
getValueDescriptor() - Method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
getState(GetStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(GetStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
+
Retrieve a State based on their key.
+
+
getState(GetStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
+
Deprecated.
+
Retrieve a State based on their key.
+
+
getState(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
+
+ Gets the state for a specific key.
+
+
getState(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
+
+ Gets the state for a specific key.
+
+
getState(DaprProtos.GetStateRequest, StreamObserver<DaprProtos.GetStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
+
+ Gets the state for a specific key.
+
+
getState(DaprProtos.GetStateRequest, StreamObserver<DaprProtos.GetStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
+
+ Gets the state for a specific key.
+
+
getState(String, State<T>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(String, State<T>, Class<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(String, String, StateOptions, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(String, String, StateOptions, Class<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(String, String, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getState(String, String, Class<T>) - Method in interface io.dapr.client.DaprClient
+
+
Retrieve a State based on their key.
+
+
getStateOptions() - Method in class io.dapr.client.domain.DeleteStateRequest
 
-
getValueDescriptor() - Method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
getStateOptions() - Method in class io.dapr.client.domain.GetStateRequest
 
-
getValueOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
getStateOptionsAsMap() - Method in class io.dapr.client.domain.StateOptions
-
.google.protobuf.Any value = 3;
+
Returns state options as a Map of option name to value.
-
getValueOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
GetStateRequest - Class in io.dapr.client.domain
-
.google.protobuf.Any value = 3;
+
A request to get a state by key.
-
getValueOrBuilder() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
GetStateRequest(String, String) - Constructor for class io.dapr.client.domain.GetStateRequest
-
.google.protobuf.Any value = 3;
+
Constructor for GetStateRequest.
-
getValues() - Method in class io.dapr.client.domain.query.filters.InFilter
+
getStates() - Method in class io.dapr.client.domain.SaveStateRequest
 
-
getVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
- Required.
+ The state key values which will be stored in store_name.
-
getVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
- Required.
+ The state key values which will be stored in store_name.
-
getVerb() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
getStates(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
- Required.
+ The state key values which will be stored in store_name.
-
getVerbValue() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
getStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
- Required.
+ The array of the state key values.
-
getVerbValue() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
getStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
- Required.
+ The array of the state key values.
-
getVerbValue() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
getStates(int) - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
- Required.
+ The array of the state key values.
-
getVersion() - Method in class io.dapr.client.domain.ConfigurationItem
-
 
-
getVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
- Version is response only and cannot be fetched.
+ The array of the state key values.
-
getVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
- Version is response only and cannot be fetched.
+ The array of the state key values.
-
getVersion() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getStates(int) - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
- Version is response only and cannot be fetched.
+ The array of the state key values.
-
getVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getStatesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
-
string version = 3;
+
+ The state key values which will be stored in store_name.
-
getVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
-
string version = 3;
+
+ The array of the state key values.
-
getVersion() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getStatesBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
-
string version = 3;
+
+ The array of the state key values.
-
getVersionBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
getStatesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
- Version is response only and cannot be fetched.
+ The state key values which will be stored in store_name.
-
getVersionBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
getStatesBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
- Version is response only and cannot be fetched.
+ The array of the state key values.
-
getVersionBytes() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
getStatesBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
- Version is response only and cannot be fetched.
+ The array of the state key values.
-
getVersionBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
getStatesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
-
string version = 3;
+
+ The state key values which will be stored in store_name.
-
getVersionBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
getStatesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
-
string version = 3;
+
+ The state key values which will be stored in store_name.
-
getVersionBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
getStatesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
-
string version = 3;
+
+ The state key values which will be stored in store_name.
+
+
getStatesCount() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesCount() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The array of the state key values.
+
+
getStatesCount() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesCount() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesCount() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The array of the state key values.
+
+
getStatesCount() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The array of the state key values.
+
+
getStatesList() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The array of the state key values.
+
+
getStatesOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The state key values which will be stored in store_name.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The array of the state key values.
-
GRPC - Enum constant in enum class io.dapr.client.DaprApiProtocol
+
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The array of the state key values.
+
+
getStatesOrBuilderList() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The array of the state key values.
+
+
getStatesOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The array of the state key values.
+
+
getStateStoreName() - Method in class io.dapr.client.domain.DeleteStateRequest
+
 
+
getStateStoreName() - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
 
+
getStateType() - Method in interface io.dapr.actors.runtime.Remindable
+
+
Gets the type for state object.
+
+
getStatus() - Method in class io.dapr.client.domain.BulkSubscribeAppResponseEntry
+
 
+
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ The status of the response.
+
+
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
+
+ The status of the response.
+
+
getStatus() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder
+
+
+ The status of the response.
+
+
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getStatus() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
+
+ The list of output bindings.
+
+
getStatus() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStatus() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStatus() - Method in interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStatusCode() - Method in class io.dapr.client.DaprHttp.Response
+
 
+
getStatuses() - Method in class io.dapr.client.domain.BulkSubscribeAppResponse
+
 
+
getStatuses(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatuses(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
+
+ The list of all responses for the bulk request.
+
+
getStatuses(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
+
+ The list of all responses for the bulk request.
+
+
getStatusesOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder
+
+
+ The list of all responses for the bulk request.
+
+
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ The status of the response.
+
+
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
+
+ The status of the response.
+
+
getStatusValue() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder
+
+
+ The status of the response.
+
+
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getStatusValue() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
+
+ The list of output bindings.
+
+
getStatusValue() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getStatusValue() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStatusValue() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStatusValue() - Method in interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder
+
+
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
+
+
getStoreName() - Method in class io.dapr.client.domain.GetBulkSecretRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.GetBulkStateRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.GetConfigurationRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.GetSecretRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.GetStateRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.QueryStateRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.SaveStateRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
+
 
+
getStoreName() - Method in class io.dapr.client.domain.UnsubscribeConfigurationRequest
+
 
+
getStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The name of state store where states are saved.
+
+
getStoreName() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The name of state store where states are saved.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The name of state store where states are saved.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
+
+ Required.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
+
+ The name of secret store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
+
+ The name of secret store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
+
+ The name of secret store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
+
+ Required.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
+
+ The name of secret store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
+
+ The name of secret store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
+
+ The name of secret store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The name of state store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
+
+ The name of configuration store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
+
+ The name of configuration store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
+
+ The name of configuration store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
+
+ Required.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
+
+ Required.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
+
string store_name = 1;
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
+
string store_name = 1;
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
+
string store_name = 1;
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
+
+ The name of configuration store.
+
+
getStoreName() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
+
+ The name of configuration store.
+
+
getStoreName() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The name of state store where states are saved.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The name of state store where states are saved.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The name of state store where states are saved.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
+
+ Required.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
+
+ Required.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder
+
+
+ The name of secret store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder
+
+
+ The name of state store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
+
+ Required.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder
+
+
+ Required.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
+
string store_name = 1;
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
+
string store_name = 1;
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder
+
+
string store_name = 1;
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
+
+ The name of configuration store.
+
+
getStoreNameBytes() - Method in interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder
+
+
+ The name of configuration store.
+
+
getSubscribeConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getSubscriptionId() - Method in class io.dapr.client.domain.SubscribeConfigurationResponse
+
 
+
getSubscriptionId() - Method in class io.dapr.client.domain.UnsubscribeConfigurationRequest
+
 
+
getSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
+
+ The list of topics.
+
+
getSubscriptions(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
+
+ The list of topics.
+
+
getSubscriptions(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptions(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptions(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
+
+ The list of topics.
+
+
getSubscriptionsCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
+
+ The list of topics.
+
+
getSubscriptionsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsCount() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsCount() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
+
+ The list of topics.
+
+
getSubscriptionsList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
+
+ The list of topics.
+
+
getSubscriptionsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilder(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilder(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilder(int) - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilderList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
+
+
+ The list of topics.
+
+
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilderList() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSubscriptionsOrBuilderList() - Method in interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
getSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
+
bool success = 1;
+
+
getSuccess() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
+
bool success = 1;
+
+
getSuccess() - Method in interface io.dapr.v1.DaprProtos.TryLockResponseOrBuilder
+
+
bool success = 1;
+
+
getTerminateWorkflowAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getTo(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getTo(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The list of output bindings.
+
+
getTo(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getToBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getToBytes(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The list of output bindings.
+
+
getToBytes(int) - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getToCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getToCount() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The list of output bindings.
+
+
getToCount() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getToken() - Method in class io.dapr.client.domain.query.Pagination
+
 
+
getToken() - Method in class io.dapr.client.domain.QueryStateResponse
+
 
+
getToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
+
+ Pagination token.
+
+
getToken() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
+
+ Pagination token.
+
+
getToken() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
+
+ Pagination token.
+
+
getTokenBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
+
+ Pagination token.
+
+
getTokenBytes() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
+
+ Pagination token.
+
+
getTokenBytes() - Method in interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder
+
+
+ Pagination token.
+
+
getToList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
+
+ The list of output bindings.
+
+
getToList() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
+
+ The list of output bindings.
+
+
getToList() - Method in interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder
+
+
+ The list of output bindings.
+
+
getTopic() - Method in class io.dapr.client.domain.BulkPublishRequest
+
 
+
getTopic() - Method in class io.dapr.client.domain.BulkSubscribeMessage
+
 
+
getTopic() - Method in class io.dapr.client.domain.PublishEventRequest
+
 
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ Required.
+
+
getTopic() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
+
+ Required.
+
+
getTopic() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ Required.
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The pubsub topic
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
+
+ The pubsub topic
+
+
getTopic() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
+
+
+ The pubsub topic
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
+
+ The pubsub topic
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
+
+ The pubsub topic
+
+
getTopic() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
+
+ The pubsub topic
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string topic = 2;
+
+
getTopic() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
string topic = 2;
+
+
getTopic() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
string topic = 2;
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The pubsub topic which publisher sent to.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ Required.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
+
+ Required.
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ Required.
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder
+
+
+ The pubsub topic
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string topic = 2;
+
+
getTopicBytes() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
string topic = 2;
+
+
getTopicBytes() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
string topic = 2;
+
+
getTryLockAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
+
string ttl = 7;
+
+
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
+
string ttl = 7;
+
+
getTtl() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
+
string ttl = 7;
+
+
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string ttl = 8;
+
+
getTtl() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
+
string ttl = 8;
+
+
getTtl() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
+
string ttl = 8;
+
+
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
+
string ttl = 7;
+
+
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
+
string ttl = 7;
+
+
getTtlBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder
+
+
string ttl = 7;
+
+
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
+
string ttl = 8;
+
+
getTtlBytes() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
+
string ttl = 8;
+
+
getTtlBytes() - Method in interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder
+
+
string ttl = 8;
+
+
getType() - Method in class io.dapr.client.domain.CloudEvent
+
+
Gets the envelope type.
+
+
getType() - Method in class io.dapr.utils.TypeRef
+
+
Gets the type referenced.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
+
string type = 1;
+
+
getType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
+
string type = 1;
+
+
getType() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
+
+
string type = 1;
+
+
getType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
+
string type = 2;
+
+
getType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
+
string type = 2;
+
+
getType() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
+
string type = 2;
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The type of event related to the originating occurrence.
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
+
string type = 1;
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
+
string type = 1;
+
+
getTypeBytes() - Method in interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder
+
+
string type = 1;
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
+
string type = 2;
+
+
getTypeBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
+
string type = 2;
+
+
getTypeBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
+
string type = 2;
+
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
getUnknownFields() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
getUnknownFields() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
getUnlockAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getUnregisterActorReminderMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getUnregisterActorTimerMethod() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getUnsubscribeConfigurationAlpha1Method() - Static method in class io.dapr.v1.DaprGrpc
+
 
+
getValue() - Method in class io.dapr.client.domain.ConfigurationItem
+
 
+
getValue() - Method in class io.dapr.client.domain.query.filters.EqFilter
+
 
+
getValue() - Method in enum io.dapr.client.domain.query.Sorting.Order
+
 
+
getValue() - Method in class io.dapr.client.domain.QueryStateItem
+
+
Retrieves the Value of the state.
+
+
getValue() - Method in class io.dapr.client.domain.State
+
+
Retrieves the Value of the state.
+
+
getValue() - Method in enum io.dapr.client.domain.StateOptions.Concurrency
+
 
+
getValue() - Method in enum io.dapr.client.domain.StateOptions.Consistency
+
 
+
getValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
+
+ Required.
+
+
getValue() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
+
+ Required.
+
+
getValue() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
+
+ Required.
+
+
getValue() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
+
+ value sets the etag value
+
+
getValue() - Method in class io.dapr.v1.CommonProtos.Etag
+
+
+ value sets the etag value
+
+
getValue() - Method in interface io.dapr.v1.CommonProtos.EtagOrBuilder
+
+
+ value sets the etag value
+
+
getValue() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
+
+ Required.
+
+
getValue() - Method in class io.dapr.v1.CommonProtos.StateItem
+
+
+ Required.
+
+
getValue() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
+
+ Required.
+
+
getValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
+
string value = 2;
+
+
getValue() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
+
string value = 2;
+
+
getValue() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
+
string value = 2;
+
+
getValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
+
.google.protobuf.Any value = 3;
+
+
getValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
+
.google.protobuf.Any value = 3;
+
+
getValue() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
+
.google.protobuf.Any value = 3;
+
+
getValueBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
+
.google.protobuf.Any value = 3;
+
+
getValueBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
+
+ Required.
+
+
getValueBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
+
+ Required.
+
+
getValueBytes() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
+
+ Required.
+
+
getValueBytes() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
+
+ value sets the etag value
+
+
getValueBytes() - Method in class io.dapr.v1.CommonProtos.Etag
+
+
+ value sets the etag value
+
+
getValueBytes() - Method in interface io.dapr.v1.CommonProtos.EtagOrBuilder
+
+
+ value sets the etag value
+
+
getValueBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
+
string value = 2;
+
+
getValueBytes() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
+
string value = 2;
+
+
getValueBytes() - Method in interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder
+
+
string value = 2;
+
+
getValueDescriptor() - Method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
 
+
getValueDescriptor() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
 
+
getValueDescriptor() - Method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
 
+
getValueDescriptor() - Method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
 
+
getValueDescriptor() - Method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
 
+
getValueDescriptor() - Method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
 
+
getValueOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
+
.google.protobuf.Any value = 3;
+
+
getValueOrBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
+
.google.protobuf.Any value = 3;
+
+
getValueOrBuilder() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
+
.google.protobuf.Any value = 3;
+
+
getValues() - Method in class io.dapr.client.domain.query.filters.InFilter
+
 
+
getVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
+
+ Required.
+
+
getVerb() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
+
+ Required.
+
+
getVerb() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
+
+ Required.
+
+
getVerbValue() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
+
+ Required.
+
+
getVerbValue() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
+
+ Required.
+
+
getVerbValue() - Method in interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder
+
+
+ Required.
+
+
getVersion() - Method in class io.dapr.client.domain.ConfigurationItem
+
 
+
getVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
+
+ Version is response only and cannot be fetched.
+
+
getVersion() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
+
+ Version is response only and cannot be fetched.
+
+
getVersion() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
+
+ Version is response only and cannot be fetched.
+
+
getVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
+
string version = 3;
+
+
getVersion() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
+
string version = 3;
+
+
getVersion() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
+
string version = 3;
+
+
getVersionBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
+
+ Version is response only and cannot be fetched.
+
+
getVersionBytes() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
+
+ Version is response only and cannot be fetched.
+
+
getVersionBytes() - Method in interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder
+
+
+ Version is response only and cannot be fetched.
+
+
getVersionBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
+
string version = 3;
+
+
getVersionBytes() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
+
string version = 3;
+
+
getVersionBytes() - Method in interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder
+
+
string version = 3;
+
+
getWorkflowAlpha1(DaprProtos.GetWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
+
+ Get Workflow details
+
+
getWorkflowAlpha1(DaprProtos.GetWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
+
+ Get Workflow details
+
+
getWorkflowAlpha1(DaprProtos.GetWorkflowRequest, StreamObserver<DaprProtos.GetWorkflowResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
+
+ Get Workflow details
+
+
getWorkflowAlpha1(DaprProtos.GetWorkflowRequest, StreamObserver<DaprProtos.GetWorkflowResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
+
+ Get Workflow details
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_component = 3;
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
+
string workflow_component = 3;
+
+
getWorkflowComponent() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
+
+
string workflow_component = 3;
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
string workflow_component = 2;
+
+
getWorkflowComponent() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
string workflow_component = 2;
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
getWorkflowComponent() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
+
string workflow_component = 2;
+
+
getWorkflowComponent() - Method in interface io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_component = 3;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
+
string workflow_component = 3;
+
+
getWorkflowComponentBytes() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
+
+
string workflow_component = 3;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
+
string workflow_component = 2;
+
+
getWorkflowComponentBytes() - Method in interface io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder
+
+
string workflow_component = 2;
+
+
getWorkflowName() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_name = 3;
+
+
getWorkflowName() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
string workflow_name = 3;
+
+
getWorkflowName() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
string workflow_name = 3;
+
+
getWorkflowNameBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_name = 3;
+
+
getWorkflowNameBytes() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
+
string workflow_name = 3;
+
+
getWorkflowNameBytes() - Method in interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder
+
+
string workflow_name = 3;
+
+
getWorkflowType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_type = 2;
+
+
getWorkflowType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
+
string workflow_type = 2;
+
+
getWorkflowType() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
+
+
string workflow_type = 2;
+
+
getWorkflowTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_type = 2;
+
+
getWorkflowTypeBytes() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
+
string workflow_type = 2;
+
+
getWorkflowTypeBytes() - Method in interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder
+
+
string workflow_type = 2;
+
+
GRPC - io.dapr.client.DaprApiProtocol
+
+
Deprecated.
+
GRPC_PORT - Static variable in class io.dapr.config.Properties
+
+
GRPC port for Dapr after checking system property and environment variable.
+
+
GrpcWrapper - Class in io.dapr.internal.opencensus
+
+
Wraps a Dapr gRPC stub with telemetry interceptor.
+
+
+ + + +

H

+
+
hasBulkSubscribe() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
hasBulkSubscribe() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
+
+ The optional bulk subscribe settings for this topic.
+
+
hasBulkSubscribe() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
hasBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
bytes bytes = 2;
+
+
hasBytes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
bytes bytes = 2;
+
+
hasBytes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
bytes bytes = 2;
+
+
hasCloudEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
hasCloudEvent() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
hasCloudEvent() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
+
+ Required in unary RPCs.
+
+
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
+
+ Required in unary RPCs.
+
+
hasData() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
+
+ Required in unary RPCs.
+
+
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
+
+ Required in unary RPCs.
+
+
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
+
+ Required in unary RPCs.
+
+
hasData() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
+
+
+ Required in unary RPCs.
+
+
hasEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
+
+ The entity tag which represents the specific version of data.
+
+
hasEtag() - Method in class io.dapr.v1.CommonProtos.StateItem
+
+
+ The entity tag which represents the specific version of data.
+
+
hasEtag() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
+
+ The entity tag which represents the specific version of data.
+
+
hasEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
+
+ The entity tag which represents the specific version of data.
+
+
hasEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
+
+ The entity tag which represents the specific version of data.
+
+
hasEtag() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
+
+ The entity tag which represents the specific version of data.
+
+
hasExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ Custom attributes which includes cloud event extensions.
+
+
hasExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
+
+ Custom attributes which includes cloud event extensions.
+
+
hasExtensions() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder
+
+
+ Custom attributes which includes cloud event extensions.
+
+
hasExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The map of additional custom properties to be sent to the app.
+
+
hasExtensions() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
+
+ The map of additional custom properties to be sent to the app.
+
+
hasExtensions() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder
+
+
+ The map of additional custom properties to be sent to the app.
+
+
hashCode() - Method in class io.dapr.actors.ActorId
+
+
Calculates the hash code for this ActorId.
+
+
hashCode() - Method in class io.dapr.client.domain.CloudEvent
+
hashCode() - Method in class io.dapr.client.domain.QueryStateItem
+
 
+
hashCode() - Method in class io.dapr.client.domain.State
+
 
+
hashCode() - Method in class io.dapr.client.domain.TransactionalStateOperation
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
hashCode() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
hashCode() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
hasHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
+
+ HTTP specific fields if request conveys http-compatible request.
+
+
hasHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
+
+ HTTP specific fields if request conveys http-compatible request.
+
+
hasHttpExtension() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
+
+ HTTP specific fields if request conveys http-compatible request.
+
+
hasMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
+
+ Required.
+
+
hasMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
+
+ Required.
+
+
hasMessage() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
+
+ Required.
+
+
hasOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
+
+ Options for concurrency and consistency to save the state.
+
+
hasOptions() - Method in class io.dapr.v1.CommonProtos.StateItem
+
+
+ Options for concurrency and consistency to save the state.
+
+
hasOptions() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
+
+ Options for concurrency and consistency to save the state.
+
+
hasOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
+
+ State operation options which includes concurrency/ + consistency/retry_policy.
+
+
hasOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
+
+ State operation options which includes concurrency/ + consistency/retry_policy.
+
+
hasOptions() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
+
+ State operation options which includes concurrency/ + consistency/retry_policy.
+
+
hasRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
+
+ State values to be operated on
+
+
hasRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
+
+ State values to be operated on
+
+
hasRequest() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
+
+ State values to be operated on
+
+
hasRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional routing rules to match against.
+
+
hasRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
+
+ The optional routing rules to match against.
+
+
hasRoutes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
+
+ The optional routing rules to match against.
+
+
hasRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
hasRules() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
hasRules() - Method in interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
hasValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
+
.google.protobuf.Any value = 3;
+
+
hasValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
+
.google.protobuf.Any value = 3;
+
+
hasValue() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
+
.google.protobuf.Any value = 3;
+
+
HEAD - io.dapr.client.DaprHttp.HttpMethods
+
 
+
HEAD - io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
HEAD = 2;
+
+
HEAD - Static variable in class io.dapr.client.domain.HttpExtension
+
+
Convenience HttpExtension object for the DaprHttp.HttpMethods.HEAD Verb with empty queryString.
+
+
HEAD_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
HEAD = 2;
+
+
healthCheck(Empty) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub
+
+
+ Health check.
+
+
healthCheck(Empty) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub
+
+
+ Health check.
+
+
healthCheck(Empty, StreamObserver<DaprAppCallbackProtos.HealthCheckResponse>) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
+
+
+ Health check.
+
+
healthCheck(Empty, StreamObserver<DaprAppCallbackProtos.HealthCheckResponse>) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub
+
+
+ Health check.
+
+
HTTP - io.dapr.client.DaprApiProtocol
+
+
Deprecated.
+
HTTP_CLIENT_MAX_IDLE_CONNECTIONS - Static variable in class io.dapr.config.Properties
+
+
Dapr's default maximum number of idle connections for HTTP connection pool.
+
+
HTTP_CLIENT_MAX_REQUESTS - Static variable in class io.dapr.config.Properties
+
+
Dapr's default maximum number of requests for HTTP client to execute concurrently.
+
+
HTTP_CLIENT_READ_TIMEOUT_SECONDS - Static variable in class io.dapr.config.Properties
+
+
Dapr's timeout in seconds for HTTP client reads.
+
+
HTTP_EXTENSION_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
HTTP_PORT - Static variable in class io.dapr.config.Properties
+
+
HTTP port for Dapr after checking system property and environment variable.
+
+
HttpExtension - Class in io.dapr.client.domain
+
+
HTTP Extension class.
+
+
HttpExtension(DaprHttp.HttpMethods) - Constructor for class io.dapr.client.domain.HttpExtension
+
+
Construct a HttpExtension object.
+
+
HttpExtension(DaprHttp.HttpMethods, Map<String, List<String>>, Map<String, String>) - Constructor for class io.dapr.client.domain.HttpExtension
+
+
Construct a HttpExtension object.
+
+
+ + + +

I

+
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
InFilter<T> - Class in io.dapr.client.domain.query.filters
+
 
+
InFilter() - Constructor for class io.dapr.client.domain.query.filters.InFilter
+
 
+
InFilter(String, List<T>) - Constructor for class io.dapr.client.domain.query.filters.InFilter
+
 
+
InFilter(String, T...) - Constructor for class io.dapr.client.domain.query.filters.InFilter
+
+
constructor for InFilter.
+
+
INPUT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
INSTANCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
INSTANCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
INSTANCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
INSTANCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
INSTANCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
INT - Static variable in class io.dapr.utils.TypeRef
+
 
+
INT_ARRAY - Static variable in class io.dapr.utils.TypeRef
+
 
+
IntegerProperty - Class in io.dapr.config
+
+
Integer configuration property.
+
+
intercept(Context, DaprGrpc.DaprStub) - Static method in class io.dapr.internal.opencensus.GrpcWrapper
+
+
Populates GRPC client with interceptors.
+
+
INTERNAL_ERROR - io.dapr.v1.DaprProtos.UnlockResponse.Status
+
+
INTERNAL_ERROR = 3;
+
+
INTERNAL_ERROR_VALUE - Static variable in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
+
INTERNAL_ERROR = 3;
+
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
GRPC_PORT - Static variable in class io.dapr.config.Properties
-
-
GRPC port for Dapr after checking system property and environment variable.
-
-
GrpcWrapper - Class in io.dapr.internal.opencensus
-
-
Wraps a Dapr gRPC stub with telemetry interceptor.
-
-
-

H

-
-
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
-
- Required.
-
-
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
-
-
- Required.
-
-
hasData() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
-
-
- Required.
-
-
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
-
-
- Required.
-
-
hasData() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
-
-
- Required.
-
-
hasData() - Method in interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder
-
-
- Required.
-
-
hasEtag() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
-
- The entity tag which represents the specific version of data.
-
-
hasEtag() - Method in class io.dapr.v1.CommonProtos.StateItem
-
-
- The entity tag which represents the specific version of data.
-
-
hasEtag() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
-
-
- The entity tag which represents the specific version of data.
-
-
hasEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
-
- The entity tag which represents the specific version of data.
-
-
hasEtag() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
-
-
- The entity tag which represents the specific version of data.
-
-
hasEtag() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
-
-
- The entity tag which represents the specific version of data.
-
-
hashCode() - Method in class io.dapr.actors.ActorId
-
-
Calculates the hash code for this ActorId.
-
-
hashCode() - Method in class io.dapr.client.domain.CloudEvent
-
hashCode() - Method in class io.dapr.client.domain.QueryStateItem
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
hashCode() - Method in class io.dapr.client.domain.State
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
hashCode() - Method in class io.dapr.client.domain.TransactionalStateOperation
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.Etag
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.StateItem
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
hashCode() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
hasHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
 
+
internalGetValueMap() - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
+
 
+
invoke(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
-
- HTTP specific fields if request conveys http-compatible request.
+
Invokes the specified method for the actor, this is mainly used for cross + language invocation.
-
hasHttpExtension() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
invokeActor(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
- HTTP specific fields if request conveys http-compatible request.
+ InvokeActor calls a method on an actor.
-
hasHttpExtension() - Method in interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder
+
invokeActor(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
- HTTP specific fields if request conveys http-compatible request.
+ InvokeActor calls a method on an actor.
-
hasMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
invokeActor(DaprProtos.InvokeActorRequest, StreamObserver<DaprProtos.InvokeActorResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
- Required.
+ InvokeActor calls a method on an actor.
-
hasMessage() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
invokeActor(DaprProtos.InvokeActorRequest, StreamObserver<DaprProtos.InvokeActorResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
- Required.
+ InvokeActor calls a method on an actor.
-
hasMessage() - Method in interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder
+
invokeApi(String, String[], Map<String, List<String>>, byte[], Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
- Required.
+
Invokes an API asynchronously that returns a text payload.
-
hasOptions() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
invokeApi(String, String[], Map<String, List<String>>, String, Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
- Options for concurrency and consistency to save the state.
+
Invokes an API asynchronously that returns a text payload.
-
hasOptions() - Method in class io.dapr.v1.CommonProtos.StateItem
+
invokeApi(String, String[], Map<String, List<String>>, Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
- Options for concurrency and consistency to save the state.
+
Invokes an API asynchronously without payload that returns a text payload.
-
hasOptions() - Method in interface io.dapr.v1.CommonProtos.StateItemOrBuilder
+
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
- Options for concurrency and consistency to save the state.
+
Invokes a Binding operation.
-
hasOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
- State operation options which includes concurrency/ - consistency/retry_policy.
+
Invokes a Binding operation.
-
hasOptions() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
-
- State operation options which includes concurrency/ - consistency/retry_policy.
+
Deprecated.
+
Invokes a Binding operation.
-
hasOptions() - Method in interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder
+
invokeBinding(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
- State operation options which includes concurrency/ - consistency/retry_policy.
+ Invokes binding data to specific output bindings
-
hasRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
invokeBinding(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
- State values to be operated on
+ Invokes binding data to specific output bindings
-
hasRequest() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
invokeBinding(DaprProtos.InvokeBindingRequest, StreamObserver<DaprProtos.InvokeBindingResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
- State values to be operated on
+ Invokes binding data to specific output bindings
-
hasRequest() - Method in interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder
+
invokeBinding(DaprProtos.InvokeBindingRequest, StreamObserver<DaprProtos.InvokeBindingResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
- State values to be operated on
+ Invokes binding data to specific output bindings
-
hasRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
invokeBinding(String, String, byte[], Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
- The optional routing rules to match against.
+
Invokes a Binding operation, skipping serialization.
-
hasRoutes() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
invokeBinding(String, String, Object) - Method in interface io.dapr.client.DaprClient
-
- The optional routing rules to match against.
+
Invokes a Binding operation.
-
hasRoutes() - Method in interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder
+
invokeBinding(String, String, Object, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
- The optional routing rules to match against.
+
Invokes a Binding operation.
-
hasValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
invokeBinding(String, String, Object, Class<T>) - Method in interface io.dapr.client.DaprClient
-
.google.protobuf.Any value = 3;
+
Invokes a Binding operation.
-
hasValue() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
invokeBinding(String, String, Object, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
.google.protobuf.Any value = 3;
+
Invokes a Binding operation.
-
hasValue() - Method in interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder
+
invokeBinding(String, String, Object, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
-
.google.protobuf.Any value = 3;
+
Invokes a Binding operation.
-
HEAD - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
-
 
-
HEAD - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
InvokeBindingRequest - Class in io.dapr.client.domain
-
HEAD = 2;
+
A request to invoke binding.
-
HEAD - Static variable in class io.dapr.client.domain.HttpExtension
+
InvokeBindingRequest(String, String) - Constructor for class io.dapr.client.domain.InvokeBindingRequest
-
Convenience HttpExtension object for the DaprHttp.HttpMethods.HEAD Verb with empty queryString.
+
Constructor for InvokeBindingRequest.
-
HEAD_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
HEAD = 2;
+
Invoke a service method.
-
healthCheck(Empty) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub
+
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
- Health check.
+
Invoke a service method.
-
healthCheck(Empty) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub
+
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
-
- Health check.
+
Deprecated.
+
Invoke a service method.
-
healthCheck(Empty, StreamObserver<DaprAppCallbackProtos.HealthCheckResponse>) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
+
invokeMethod(String) - Method in interface io.dapr.actors.client.ActorProxy
-
- Health check.
+
Invokes an Actor method on Dapr.
-
healthCheck(Empty, StreamObserver<DaprAppCallbackProtos.HealthCheckResponse>) - Method in class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub
+
invokeMethod(String, TypeRef<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
- Health check.
+
Invokes an Actor method on Dapr.
-
HTTP - Enum constant in enum class io.dapr.client.DaprApiProtocol
-
 
-
HTTP_CLIENT_MAX_IDLE_CONNECTIONS - Static variable in class io.dapr.config.Properties
+
invokeMethod(String, Class<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
Dapr's default maximum number of idle connections for HTTP connection pool.
+
Invokes an Actor method on Dapr.
-
HTTP_CLIENT_MAX_REQUESTS - Static variable in class io.dapr.config.Properties
+
invokeMethod(String, Object) - Method in interface io.dapr.actors.client.ActorProxy
-
Dapr's default maximum number of requests for HTTP client to execute concurrently.
+
Invokes an Actor method on Dapr.
-
HTTP_CLIENT_READ_TIMEOUT_SECONDS - Static variable in class io.dapr.config.Properties
+
invokeMethod(String, Object, TypeRef<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
Dapr's timeout in seconds for HTTP client reads.
+
Invokes an Actor method on Dapr.
-
HTTP_EXTENSION_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
-
 
-
HTTP_PORT - Static variable in class io.dapr.config.Properties
+
invokeMethod(String, Object, Class<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
HTTP port for Dapr after checking system property and environment variable.
+
Invokes an Actor method on Dapr.
-
HttpExtension - Class in io.dapr.client.domain
+
invokeMethod(String, String, byte[], HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
HTTP Extension class.
+
Invoke a service method, without using serialization.
-
HttpExtension(DaprHttp.HttpMethods) - Constructor for class io.dapr.client.domain.HttpExtension
+
invokeMethod(String, String, HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
Construct a HttpExtension object.
+
Invoke a service method, using serialization.
-
HttpExtension(DaprHttp.HttpMethods, Map<String, List<String>>, Map<String, String>) - Constructor for class io.dapr.client.domain.HttpExtension
+
invokeMethod(String, String, HttpExtension, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
Construct a HttpExtension object.
+
Invoke a service method, using serialization.
-
-

I

-
-
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
-
 
-
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
-
 
-
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeServiceRequest
-
 
-
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
-
 
-
ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
-
 
-
InFilter<T> - Class in io.dapr.client.domain.query.filters
-
 
-
InFilter() - Constructor for class io.dapr.client.domain.query.filters.InFilter
-
 
-
InFilter(String, List<T>) - Constructor for class io.dapr.client.domain.query.filters.InFilter
-
 
-
InFilter(String, T...) - Constructor for class io.dapr.client.domain.query.filters.InFilter
+
invokeMethod(String, String, HttpExtension, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
-
constructor for InFilter.
+
Invoke a service method, using serialization.
-
INT - Static variable in class io.dapr.utils.TypeRef
-
 
-
INT_ARRAY - Static variable in class io.dapr.utils.TypeRef
-
 
-
IntegerProperty - Class in io.dapr.config
+
invokeMethod(String, String, Object, HttpExtension) - Method in interface io.dapr.client.DaprClient
-
Integer configuration property.
+
Invoke a service method, using serialization.
-
intercept(Context, DaprGrpc.DaprStub) - Static method in class io.dapr.internal.opencensus.GrpcWrapper
+
invokeMethod(String, String, Object, HttpExtension, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
Populates GRPC client with interceptors.
+
Invoke a service method, using serialization.
-
INTERNAL_ERROR - Enum constant in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
invokeMethod(String, String, Object, HttpExtension, Class<T>) - Method in interface io.dapr.client.DaprClient
-
INTERNAL_ERROR = 3;
+
Invoke a service method, using serialization.
-
INTERNAL_ERROR_VALUE - Static variable in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
invokeMethod(String, String, Object, HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
INTERNAL_ERROR = 3;
+
Invoke a service method, using serialization.
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
-
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
-
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
-
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.Etag
-
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
-
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
+
Invoke a service method, using serialization.
+
+
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
+
+
Invoke a service method, using serialization.
+
+
InvokeMethodRequest - Class in io.dapr.client.domain
+
+
A request to invoke a service.
+
+
InvokeMethodRequest(String, String) - Constructor for class io.dapr.client.domain.InvokeMethodRequest
+
+
Constructor for InvokeMethodRequest.
+
+
invokeReminder(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
+
+
Fires a reminder for the Actor.
+
+
invokeService(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
+
+ Invokes a method on a remote Dapr app.
+
+
invokeService(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
+
+ Invokes a method on a remote Dapr app.
+
+
invokeService(DaprProtos.InvokeServiceRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
+
+ Invokes a method on a remote Dapr app.
+
+
invokeService(DaprProtos.InvokeServiceRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
+
+ Invokes a method on a remote Dapr app.
+
+
invokeTimer(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
+
+
Fires a timer for the Actor.
+
+
io.dapr - package io.dapr
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
io.dapr.actors - package io.dapr.actors
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
io.dapr.actors.client - package io.dapr.actors.client
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
io.dapr.actors.runtime - package io.dapr.actors.runtime
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
io.dapr.client - package io.dapr.client
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
io.dapr.client.domain - package io.dapr.client.domain
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateItem
+
io.dapr.client.domain.query - package io.dapr.client.domain.query
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
io.dapr.client.domain.query.filters - package io.dapr.client.domain.query.filters
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
io.dapr.config - package io.dapr.config
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
io.dapr.exceptions - package io.dapr.exceptions
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
io.dapr.internal.opencensus - package io.dapr.internal.opencensus
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
io.dapr.serializer - package io.dapr.serializer
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
io.dapr.utils - package io.dapr.utils
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
io.dapr.v1 - package io.dapr.v1
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
isBinaryContentType(String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
isCloudEventContentType(String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.Etag
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
internalGetFieldAccessorTable() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
internalGetMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
isInitialized() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
isJsonContentType(String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
isPrimitive(TypeRef<T>) - Static method in class io.dapr.utils.TypeRef
+
+
Checks if the given TypeRef is of a primitive type + Similar to implementation of deserializePrimitives in the class ObjectSerializer + It considers only those types as primitives.
+
+
isStringContentType(String) - Static method in class io.dapr.utils.DefaultContentTypeConverter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
isValid() - Method in class io.dapr.client.domain.query.filters.AndFilter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
isValid() - Method in class io.dapr.client.domain.query.filters.EqFilter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
isValid() - Method in class io.dapr.client.domain.query.filters.Filter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
isValid() - Method in class io.dapr.client.domain.query.filters.InFilter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
isValid() - Method in class io.dapr.client.domain.query.filters.OrFilter
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
+ + + +

K

+
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
internalGetMutableMapField(int) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
internalGetValueMap() - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
+ + + +

L

+
+
LAST_WRITE - io.dapr.client.domain.StateOptions.Concurrency
 
-
invoke(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
-
-
Invokes the specified method for the actor, this is mainly used for cross - language invocation.
-
-
invokeActor(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
listInputBindings(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
- InvokeActor calls a method on an actor.
+ Lists all input bindings subscribed by this app.
-
invokeActor(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
listInputBindings(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
- InvokeActor calls a method on an actor.
+ Lists all input bindings subscribed by this app.
-
invokeActor(DaprProtos.InvokeActorRequest, StreamObserver<DaprProtos.InvokeActorResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
listInputBindings(Empty, StreamObserver<DaprAppCallbackProtos.ListInputBindingsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
- InvokeActor calls a method on an actor.
+ Lists all input bindings subscribed by this app.
-
invokeActor(DaprProtos.InvokeActorRequest, StreamObserver<DaprProtos.InvokeActorResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
listInputBindings(Empty, StreamObserver<DaprAppCallbackProtos.ListInputBindingsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
- InvokeActor calls a method on an actor.
-
-
invokeApi(String, String[], Map<String, List<String>>, byte[], Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
-
Invokes an API asynchronously that returns a text payload.
-
-
invokeApi(String, String[], Map<String, List<String>>, String, Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
-
Invokes an API asynchronously that returns a text payload.
-
-
invokeApi(String, String[], Map<String, List<String>>, Map<String, String>, Context) - Method in class io.dapr.client.DaprHttp
-
-
Invokes an API asynchronously without payload that returns a text payload.
-
-
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(InvokeBindingRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
-
-
Invokes a Binding operation.
+ Lists all input bindings subscribed by this app.
-
invokeBinding(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
listTopicSubscriptions(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
- Invokes binding data to specific output bindings
+ Lists all topics subscribed by this app.
-
invokeBinding(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
listTopicSubscriptions(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
- Invokes binding data to specific output bindings
+ Lists all topics subscribed by this app.
-
invokeBinding(DaprProtos.InvokeBindingRequest, StreamObserver<DaprProtos.InvokeBindingResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
listTopicSubscriptions(Empty, StreamObserver<DaprAppCallbackProtos.ListTopicSubscriptionsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
- Invokes binding data to specific output bindings
+ Lists all topics subscribed by this app.
-
invokeBinding(DaprProtos.InvokeBindingRequest, StreamObserver<DaprProtos.InvokeBindingResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
listTopicSubscriptions(Empty, StreamObserver<DaprAppCallbackProtos.ListTopicSubscriptionsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
- Invokes binding data to specific output bindings
-
-
invokeBinding(String, String, byte[], Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation, skipping serialization.
-
-
invokeBinding(String, String, byte[], Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation, skipping serialization.
-
-
invokeBinding(String, String, Object) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Class<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Map<String, String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Map<String, String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invokes a Binding operation.
-
-
invokeBinding(String, String, Object, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invokes a Binding operation.
-
-
InvokeBindingRequest - Class in io.dapr.client.domain
-
-
A request to invoke binding.
-
-
InvokeBindingRequest(String, String) - Constructor for class io.dapr.client.domain.InvokeBindingRequest
-
-
Constructor for InvokeBindingRequest.
-
-
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method.
-
-
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method.
-
-
invokeMethod(InvokeMethodRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
-
-
Invoke a service method.
-
-
invokeMethod(String) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, TypeRef<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, Class<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, Object) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, Object, TypeRef<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, Object, Class<T>) - Method in interface io.dapr.actors.client.ActorProxy
-
-
Invokes an Actor method on Dapr.
-
-
invokeMethod(String, String, byte[], HttpExtension, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, without using serialization.
-
-
invokeMethod(String, String, byte[], HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, without using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, HttpExtension, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension, Class<T>) - Method in interface io.dapr.client.DaprClient
-
-
Invoke a service method, using serialization.
-
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Invoke a service method, using serialization.
+ Lists all topics subscribed by this app.
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>) - Method in interface io.dapr.client.DaprClient
+
LOCK_BELONGS_TO_OTHERS - io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Invoke a service method, using serialization.
+
LOCK_BELONGS_TO_OTHERS = 2;
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
LOCK_BELONGS_TO_OTHERS_VALUE - Static variable in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Invoke a service method, using serialization.
+
LOCK_BELONGS_TO_OTHERS = 2;
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprClient
+
LOCK_DOES_NOT_EXIST - io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Invoke a service method, using serialization.
+
LOCK_DOES_NOT_EXIST = 1;
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
LOCK_DOES_NOT_EXIST_VALUE - Static variable in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Invoke a service method, using serialization.
+
LOCK_DOES_NOT_EXIST = 1;
-
invokeMethod(String, String, Object, HttpExtension, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprClient
+
LOCK_OWNER_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
LOCK_OWNER_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
LONG - Static variable in class io.dapr.utils.TypeRef
+
 
+
+ + + +

M

+
+
match() - Method in annotation type io.dapr.Rule
-
Invoke a service method, using serialization.
+
The Common Expression Language (CEL) expression to use + to match the incoming cloud event.
-
InvokeMethodRequest - Class in io.dapr.client.domain
+
MATCH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
MATCH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
+
 
+
MAX_AWAIT_DURATION_MS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
MAX_MESSAGES_COUNT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
mergeBulkSubscribe(DaprAppCallbackProtos.BulkSubscribeConfig) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
A request to invoke a service.
+
+ The optional bulk subscribe settings for this topic.
-
InvokeMethodRequest(String, String) - Constructor for class io.dapr.client.domain.InvokeMethodRequest
+
mergeCloudEvent(DaprAppCallbackProtos.TopicEventCERequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
-
Constructor for InvokeMethodRequest.
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
-
invokeReminder(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
+
mergeData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
Fires a reminder for the Actor.
+
+ Required in unary RPCs.
-
invokeService(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
mergeData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Invokes a method on a remote Dapr app.
+ Required in unary RPCs.
-
invokeService(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
mergeEtag(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- Invokes a method on a remote Dapr app.
+ The entity tag which represents the specific version of data.
-
invokeService(DaprProtos.InvokeServiceRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
mergeEtag(CommonProtos.Etag) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- Invokes a method on a remote Dapr app.
+ The entity tag which represents the specific version of data.
-
invokeService(DaprProtos.InvokeServiceRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
mergeExtensions(Struct) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
- Invokes a method on a remote Dapr app.
+ Custom attributes which includes cloud event extensions.
-
invokeTimer(String, String, String, byte[]) - Method in class io.dapr.actors.runtime.ActorRuntime
+
mergeExtensions(Struct) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
-
Fires a timer for the Actor.
+
+ The map of additional custom properties to be sent to the app.
-
io.dapr - package io.dapr
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
io.dapr.actors - package io.dapr.actors
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
io.dapr.actors.client - package io.dapr.actors.client
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
io.dapr.actors.runtime - package io.dapr.actors.runtime
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
io.dapr.client - package io.dapr.client
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
io.dapr.client.domain - package io.dapr.client.domain
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
io.dapr.client.domain.query - package io.dapr.client.domain.query
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
io.dapr.client.domain.query.filters - package io.dapr.client.domain.query.filters
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
io.dapr.config - package io.dapr.config
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
io.dapr.exceptions - package io.dapr.exceptions
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
io.dapr.internal.opencensus - package io.dapr.internal.opencensus
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
io.dapr.serializer - package io.dapr.serializer
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
io.dapr.utils - package io.dapr.utils
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
io.dapr.v1 - package io.dapr.v1
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.Etag
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateItem
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
mergeFrom(CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
mergeFrom(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
mergeFrom(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
mergeFrom(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
mergeFrom(CommonProtos.InvokeResponse) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
mergeFrom(CommonProtos.StateItem) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
mergeFrom(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
mergeFrom(CommonProtos.StreamPayload) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
mergeFrom(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
mergeFrom(DaprAppCallbackProtos.BindingEventResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
mergeFrom(DaprAppCallbackProtos.BulkSubscribeConfig) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
mergeFrom(DaprAppCallbackProtos.HealthCheckResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
mergeFrom(DaprAppCallbackProtos.ListInputBindingsResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
mergeFrom(DaprAppCallbackProtos.ListTopicSubscriptionsResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
mergeFrom(DaprAppCallbackProtos.TopicEventBulkRequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
mergeFrom(DaprAppCallbackProtos.TopicEventBulkRequestEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
mergeFrom(DaprAppCallbackProtos.TopicEventBulkResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
mergeFrom(DaprAppCallbackProtos.TopicEventBulkResponseEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
mergeFrom(DaprAppCallbackProtos.TopicEventCERequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
mergeFrom(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
mergeFrom(DaprAppCallbackProtos.TopicEventResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
mergeFrom(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
mergeFrom(DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
mergeFrom(DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
mergeFrom(DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
mergeFrom(DaprProtos.BulkPublishRequest) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
mergeFrom(DaprProtos.BulkPublishRequestEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
mergeFrom(DaprProtos.BulkPublishResponse) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
mergeFrom(DaprProtos.BulkPublishResponseFailedEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
mergeFrom(DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
mergeFrom(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
mergeFrom(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
mergeFrom(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
mergeFrom(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
mergeFrom(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
mergeFrom(DaprProtos.GetActorStateResponse) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
isInitialized() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
mergeFrom(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
isValid() - Method in class io.dapr.client.domain.query.filters.AndFilter
+
mergeFrom(DaprProtos.GetBulkSecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
isValid() - Method in class io.dapr.client.domain.query.filters.EqFilter
+
mergeFrom(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
isValid() - Method in class io.dapr.client.domain.query.filters.Filter
+
mergeFrom(DaprProtos.GetBulkStateResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
isValid() - Method in class io.dapr.client.domain.query.filters.InFilter
+
mergeFrom(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
isValid() - Method in class io.dapr.client.domain.query.filters.OrFilter
+
mergeFrom(DaprProtos.GetConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
mergeFrom(DaprProtos.GetMetadataResponse) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
mergeFrom(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
ITEMS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
mergeFrom(DaprProtos.GetSecretResponse) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
-

J

-
-
JSON_REQUEST_MAPPER - Static variable in class io.dapr.client.DaprClientGrpc
-
-
A mapper to serialize JSON request objects.
-
-
-

K

-
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
mergeFrom(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
mergeFrom(DaprProtos.GetStateResponse) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
mergeFrom(DaprProtos.GetWorkflowRequest) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
mergeFrom(DaprProtos.GetWorkflowResponse) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
+
mergeFrom(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
+
mergeFrom(DaprProtos.InvokeActorResponse) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateItem
+
mergeFrom(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
mergeFrom(DaprProtos.InvokeBindingResponse) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
KEY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
mergeFrom(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
mergeFrom(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
mergeFrom(DaprProtos.PubsubSubscription) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
KEYS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
mergeFrom(DaprProtos.PubsubSubscriptionRule) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
-

L

-
-
LAST_WRITE - Enum constant in enum class io.dapr.client.domain.StateOptions.Concurrency
+
mergeFrom(DaprProtos.PubsubSubscriptionRules) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
mergeFrom(DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
mergeFrom(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
mergeFrom(DaprProtos.QueryStateResponse) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
mergeFrom(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
mergeFrom(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
mergeFrom(DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
 
+
mergeFrom(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
 
+
mergeFrom(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
 
+
mergeFrom(DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
mergeFrom(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
 
+
mergeFrom(DaprProtos.StartWorkflowRequest) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
mergeFrom(DaprProtos.SubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
mergeFrom(DaprProtos.SubscribeConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
mergeFrom(DaprProtos.TerminateWorkflowRequest) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
listInputBindings(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
mergeFrom(DaprProtos.TerminateWorkflowResponse) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
mergeFrom(DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
mergeFrom(DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
mergeFrom(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
mergeFrom(DaprProtos.TryLockResponse) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
mergeFrom(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
mergeFrom(DaprProtos.UnlockResponse) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
mergeFrom(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
mergeFrom(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
mergeFrom(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
mergeFrom(DaprProtos.UnsubscribeConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
mergeFrom(DaprProtos.WorkflowReference) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
mergeHttpExtension(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Lists all input bindings subscribed by this app.
+ HTTP specific fields if request conveys http-compatible request.
-
listInputBindings(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
mergeMessage(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
- Lists all input bindings subscribed by this app.
+ Required.
-
listInputBindings(Empty, StreamObserver<DaprAppCallbackProtos.ListInputBindingsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
mergeOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
- Lists all input bindings subscribed by this app.
+ Options for concurrency and consistency to save the state.
-
listInputBindings(Empty, StreamObserver<DaprAppCallbackProtos.ListInputBindingsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
mergeOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
- Lists all input bindings subscribed by this app.
+ State operation options which includes concurrency/ + consistency/retry_policy.
-
listTopicSubscriptions(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
mergeRequest(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
- Lists all topics subscribed by this app.
+ State values to be operated on
-
listTopicSubscriptions(Empty) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
mergeRoutes(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
- Lists all topics subscribed by this app.
+ The optional routing rules to match against.
-
listTopicSubscriptions(Empty, StreamObserver<DaprAppCallbackProtos.ListTopicSubscriptionsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
mergeRules(DaprProtos.PubsubSubscriptionRules) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
-
- Lists all topics subscribed by this app.
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
mergeValue(Any) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
+
.google.protobuf.Any value = 3;
-
listTopicSubscriptions(Empty, StreamObserver<DaprAppCallbackProtos.ListTopicSubscriptionsResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
MESSAGE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
 
+
MESSAGE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
metadata() - Method in annotation type io.dapr.Topic
-
- Lists all topics subscribed by this app.
+
Metadata in the form of a json object.
-
LOCK_BELONGS_TO_OTHERS - Enum constant in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
Metadata - Class in io.dapr.client.domain
-
LOCK_BELONGS_TO_OTHERS = 2;
+
Enumerates commonly used metadata attributes.
-
LOCK_BELONGS_TO_OTHERS_VALUE - Static variable in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
METHOD_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
METHOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
 
+
+ + + +

N

+
+
name() - Method in annotation type io.dapr.actors.ActorMethod
-
LOCK_BELONGS_TO_OTHERS = 2;
+
Actor's method name.
-
LOCK_DOES_NOT_EXIST - Enum constant in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
name() - Method in annotation type io.dapr.actors.ActorType
-
LOCK_DOES_NOT_EXIST = 1;
+
Overrides Actor's name.
-
LOCK_DOES_NOT_EXIST_VALUE - Static variable in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
name() - Method in annotation type io.dapr.Topic
-
LOCK_DOES_NOT_EXIST = 1;
+
Name of topic to be subscribed to.
+
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
NetworkUtils - Class in io.dapr.utils
+
+
Utility methods for network, internal to Dapr SDK.
+
+
NEW_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
 
+
newBlockingStub(Channel) - Static method in class io.dapr.v1.AppCallbackAlphaGrpc
+
+
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
+
newBlockingStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
+
+
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
+
newBlockingStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
+
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
+
newBlockingStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
+
+
Creates a new blocking-style stub that supports unary and streaming output calls on the service
-
LOCK_OWNER_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.Etag
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
newBuilder() - Static method in class io.dapr.v1.CommonProtos.StreamPayload
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
 
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
LOCK_OWNER_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
LONG - Static variable in class io.dapr.utils.TypeRef
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
-

M

-
-
match() - Element in annotation interface io.dapr.Rule
-
-
The Common Expression Language (CEL) expression to use - to match the incoming cloud event.
-
-
MATCH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
mergeData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
-
- Required.
-
-
mergeData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
-
-
- Required.
-
-
mergeEtag(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
-
- The entity tag which represents the specific version of data.
-
-
mergeEtag(CommonProtos.Etag) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
-
- The entity tag which represents the specific version of data.
-
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
newBuilder() - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
newBuilder(CommonProtos.ConfigurationItem) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
newBuilder(CommonProtos.Etag) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
newBuilder(CommonProtos.HTTPExtension) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
newBuilder(CommonProtos.InvokeRequest) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
newBuilder(CommonProtos.InvokeResponse) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
newBuilder(CommonProtos.StateItem) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
newBuilder(CommonProtos.StateOptions) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
newBuilder(CommonProtos.StreamPayload) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
newBuilder(DaprAppCallbackProtos.BindingEventRequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
newBuilder(DaprAppCallbackProtos.BindingEventResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
newBuilder(DaprAppCallbackProtos.BulkSubscribeConfig) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
newBuilder(DaprAppCallbackProtos.HealthCheckResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
newBuilder(DaprAppCallbackProtos.ListInputBindingsResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
newBuilder(DaprAppCallbackProtos.ListTopicSubscriptionsResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventBulkRequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventBulkRequestEntry) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventBulkResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventBulkResponseEntry) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventCERequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventRequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
newBuilder(DaprAppCallbackProtos.TopicEventResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
newBuilder(DaprAppCallbackProtos.TopicRoutes) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
newBuilder(DaprAppCallbackProtos.TopicRule) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
newBuilder(DaprAppCallbackProtos.TopicSubscription) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
newBuilder(DaprProtos.ActiveActorsCount) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
newBuilder(DaprProtos.BulkPublishRequest) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
newBuilder(DaprProtos.BulkPublishRequestEntry) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
mergeFrom(CodedInputStream, ExtensionRegistryLite) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
newBuilder(DaprProtos.BulkPublishResponse) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
newBuilder(DaprProtos.BulkPublishResponseFailedEntry) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
newBuilder(DaprProtos.BulkStateItem) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
newBuilder(DaprProtos.DeleteBulkStateRequest) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
newBuilder(DaprProtos.DeleteStateRequest) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
newBuilder(DaprProtos.ExecuteActorStateTransactionRequest) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
newBuilder(DaprProtos.ExecuteStateTransactionRequest) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
newBuilder(DaprProtos.GetActorStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
newBuilder(DaprProtos.GetActorStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
newBuilder(DaprProtos.GetBulkSecretRequest) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
newBuilder(DaprProtos.GetBulkSecretResponse) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
newBuilder(DaprProtos.GetBulkStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
newBuilder(DaprProtos.GetBulkStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
newBuilder(DaprProtos.GetConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
newBuilder(DaprProtos.GetConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
newBuilder(DaprProtos.GetMetadataResponse) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
newBuilder(DaprProtos.GetSecretRequest) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
newBuilder(DaprProtos.GetSecretResponse) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
newBuilder(DaprProtos.GetStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
newBuilder(DaprProtos.GetStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
newBuilder(DaprProtos.GetWorkflowRequest) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
newBuilder(DaprProtos.GetWorkflowResponse) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
newBuilder(DaprProtos.InvokeActorRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
newBuilder(DaprProtos.InvokeActorResponse) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
newBuilder(DaprProtos.InvokeBindingRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
newBuilder(DaprProtos.InvokeBindingResponse) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
newBuilder(DaprProtos.InvokeServiceRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
newBuilder(DaprProtos.PublishEventRequest) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
newBuilder(DaprProtos.PubsubSubscription) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
newBuilder(DaprProtos.PubsubSubscriptionRule) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
newBuilder(DaprProtos.PubsubSubscriptionRules) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
newBuilder(DaprProtos.QueryStateItem) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
newBuilder(DaprProtos.QueryStateRequest) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
newBuilder(DaprProtos.QueryStateResponse) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
newBuilder(DaprProtos.RegisterActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
newBuilder(DaprProtos.RegisterActorTimerRequest) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
newBuilder(DaprProtos.RegisteredComponents) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
newBuilder(DaprProtos.RenameActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
newBuilder(DaprProtos.SaveStateRequest) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
newBuilder(DaprProtos.SecretResponse) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
newBuilder(DaprProtos.SetMetadataRequest) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
newBuilder(DaprProtos.StartWorkflowRequest) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
newBuilder(DaprProtos.SubscribeConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
newBuilder(DaprProtos.SubscribeConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
newBuilder(DaprProtos.TerminateWorkflowRequest) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
newBuilder(DaprProtos.TerminateWorkflowResponse) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
newBuilder(DaprProtos.TransactionalActorStateOperation) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
newBuilder(DaprProtos.TransactionalStateOperation) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
newBuilder(DaprProtos.TryLockRequest) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
newBuilder(DaprProtos.TryLockResponse) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
newBuilder(DaprProtos.UnlockRequest) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
newBuilder(DaprProtos.UnlockResponse) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
newBuilder(DaprProtos.UnregisterActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
newBuilder(DaprProtos.UnregisterActorTimerRequest) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
newBuilder(DaprProtos.UnsubscribeConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
newBuilder(DaprProtos.UnsubscribeConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
newBuilder(DaprProtos.WorkflowReference) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.Etag
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
mergeFrom(Message) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
mergeFrom(CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
mergeFrom(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
mergeFrom(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
mergeFrom(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
mergeFrom(CommonProtos.InvokeResponse) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
mergeFrom(CommonProtos.StateItem) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
mergeFrom(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
mergeFrom(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
mergeFrom(DaprAppCallbackProtos.BindingEventResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
mergeFrom(DaprAppCallbackProtos.HealthCheckResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
mergeFrom(DaprAppCallbackProtos.ListInputBindingsResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
mergeFrom(DaprAppCallbackProtos.ListTopicSubscriptionsResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
mergeFrom(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
mergeFrom(DaprAppCallbackProtos.TopicEventResponse) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
mergeFrom(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
mergeFrom(DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
mergeFrom(DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
mergeFrom(DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
mergeFrom(DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
mergeFrom(DaprProtos.DeleteBulkStateRequest) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
mergeFrom(DaprProtos.DeleteStateRequest) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
mergeFrom(DaprProtos.ExecuteActorStateTransactionRequest) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
mergeFrom(DaprProtos.ExecuteStateTransactionRequest) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
mergeFrom(DaprProtos.GetActorStateRequest) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
mergeFrom(DaprProtos.GetActorStateResponse) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
mergeFrom(DaprProtos.GetBulkSecretRequest) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
mergeFrom(DaprProtos.GetBulkSecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
mergeFrom(DaprProtos.GetBulkStateRequest) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
mergeFrom(DaprProtos.GetBulkStateResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
mergeFrom(DaprProtos.GetConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
mergeFrom(DaprProtos.GetConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
mergeFrom(DaprProtos.GetMetadataResponse) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
mergeFrom(DaprProtos.GetSecretRequest) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
mergeFrom(DaprProtos.GetSecretResponse) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
mergeFrom(DaprProtos.GetStateRequest) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
mergeFrom(DaprProtos.GetStateResponse) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
mergeFrom(DaprProtos.InvokeActorRequest) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
mergeFrom(DaprProtos.InvokeActorResponse) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
mergeFrom(DaprProtos.InvokeBindingRequest) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
mergeFrom(DaprProtos.InvokeBindingResponse) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
mergeFrom(DaprProtos.InvokeServiceRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
mergeFrom(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
mergeFrom(DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
mergeFrom(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
mergeFrom(DaprProtos.QueryStateResponse) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
mergeFrom(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
mergeFrom(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
mergeFrom(DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
mergeFrom(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
mergeFrom(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
mergeFrom(DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
mergeFrom(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
mergeFrom(DaprProtos.SubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
mergeFrom(DaprProtos.SubscribeConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
mergeFrom(DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
mergeFrom(DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
mergeFrom(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
mergeFrom(DaprProtos.TryLockResponse) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
mergeFrom(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
mergeFrom(DaprProtos.UnlockResponse) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
mergeFrom(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
mergeFrom(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
mergeFrom(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
mergeFrom(DaprProtos.UnsubscribeConfigurationResponse) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
mergeHttpExtension(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
-
-
- HTTP specific fields if request conveys http-compatible request.
-
-
mergeMessage(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
-
-
- Required.
-
-
mergeOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
-
-
- Options for concurrency and consistency to save the state.
-
-
mergeOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
-
-
- State operation options which includes concurrency/ - consistency/retry_policy.
-
-
mergeRequest(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
-
-
- State values to be operated on
-
-
mergeRoutes(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
-
-
- The optional routing rules to match against.
-
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.Etag
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
mergeUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
mergeValue(Any) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
-
-
.google.protobuf.Any value = 3;
-
-
MESSAGE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
MESSAGE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
metadata() - Element in annotation interface io.dapr.Topic
-
-
Metadata in the form of a json object.
-
-
Metadata - Class in io.dapr.client.domain
-
-
Enumerates commonly used metadata attributes.
-
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkStateItem
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateResponse
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
METADATA_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
METHOD_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.InvokeRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
METHOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
-

N

-
-
name() - Element in annotation interface io.dapr.actors.ActorMethod
-
-
Actor's method name.
-
-
name() - Element in annotation interface io.dapr.actors.ActorType
-
-
Overrides Actor's name.
-
-
name() - Element in annotation interface io.dapr.Topic
-
-
Name of topic to be subscribed to.
-
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
NetworkUtils - Class in io.dapr.utils
+
newFutureStub(Channel) - Static method in class io.dapr.v1.AppCallbackAlphaGrpc
-
Utility methods for network, internal to Dapr SDK.
+
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
NEW_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
-
 
-
newBlockingStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
+
newFutureStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
-
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
newBlockingStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
newFutureStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
-
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
newBlockingStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
+
newFutureStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
-
Creates a new blocking-style stub that supports unary and streaming output calls on the service
+
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.StateItem
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.Etag
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
newBuilder() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
newBuilder() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
newBuilder(CommonProtos.ConfigurationItem) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
newStub(Channel) - Static method in class io.dapr.v1.AppCallbackAlphaGrpc
+
+
Creates a new async stub that supports all call types for the service
+
+
newStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
+
+
Creates a new async stub that supports all call types for the service
+
+
newStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
+
Creates a new async stub that supports all call types for the service
+
+
newStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
+
+
Creates a new async stub that supports all call types for the service
+
+
NONE - io.dapr.actors.runtime.ActorStateChangeKind
+
+
No change in state.
+
+
NONE - io.dapr.client.DaprHttp.HttpMethods
 
-
newBuilder(CommonProtos.Etag) - Static method in class io.dapr.v1.CommonProtos.Etag
+
NONE - io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
NONE = 0;
+
+
NONE - Static variable in class io.dapr.client.domain.HttpExtension
+
+
Convenience HttpExtension object for DaprHttp.HttpMethods.NONE with empty queryString.
+
+
NONE_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
NONE = 0;
+
+
+ + + +

O

+
+
OBJECT_MAPPER - Static variable in class io.dapr.client.domain.CloudEvent
+
+
Shared Json serializer/deserializer as per Jackson's documentation.
+
+
OBJECT_MAPPER - Static variable in class io.dapr.client.ObjectSerializer
+
+
Shared Json serializer/deserializer as per Jackson's documentation.
+
+
ObjectSerializer - Class in io.dapr.client
+
+
Serializes and deserializes an internal object.
+
+
ObjectSerializer() - Constructor for class io.dapr.client.ObjectSerializer
+
+
Default constructor to avoid class from being instantiated outside package but still inherited.
+
+
OK_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
newBuilder(CommonProtos.HTTPExtension) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
OLD_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
newBuilder(CommonProtos.InvokeRequest) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
onActivate() - Method in class io.dapr.actors.runtime.AbstractActor
+
+
Callback function invoked after an Actor has been activated.
+
+
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
+
+ Listens events from the input bindings + User application can save the states or send the events to the output + bindings optionally by returning BindingEventResponse.
+
+
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
+
+ Listens events from the input bindings + User application can save the states or send the events to the output + bindings optionally by returning BindingEventResponse.
+
+
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest, StreamObserver<DaprAppCallbackProtos.BindingEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
+
+ Listens events from the input bindings + User application can save the states or send the events to the output + bindings optionally by returning BindingEventResponse.
+
+
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest, StreamObserver<DaprAppCallbackProtos.BindingEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
+
+ Listens events from the input bindings + User application can save the states or send the events to the output + bindings optionally by returning BindingEventResponse.
+
+
onBulkTopicEventAlpha1(DaprAppCallbackProtos.TopicEventBulkRequest) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub
+
+
+ Subscribes bulk events from Pubsub
+
+
onBulkTopicEventAlpha1(DaprAppCallbackProtos.TopicEventBulkRequest) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub
+
+
+ Subscribes bulk events from Pubsub
+
+
onBulkTopicEventAlpha1(DaprAppCallbackProtos.TopicEventBulkRequest, StreamObserver<DaprAppCallbackProtos.TopicEventBulkResponse>) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaImplBase
+
+
+ Subscribes bulk events from Pubsub
+
+
onBulkTopicEventAlpha1(DaprAppCallbackProtos.TopicEventBulkRequest, StreamObserver<DaprAppCallbackProtos.TopicEventBulkResponse>) - Method in class io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaStub
+
+
+ Subscribes bulk events from Pubsub
+
+
onDeactivate() - Method in class io.dapr.actors.runtime.AbstractActor
+
+
Callback function invoked after an Actor has been deactivated.
+
+
onInvoke(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
+
+ Invokes service method with InvokeRequest.
+
+
onInvoke(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
+
+ Invokes service method with InvokeRequest.
+
+
onInvoke(CommonProtos.InvokeRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
+
+ Invokes service method with InvokeRequest.
+
+
onInvoke(CommonProtos.InvokeRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
+
+ Invokes service method with InvokeRequest.
+
+
onPostActorMethod(ActorMethodContext) - Method in class io.dapr.actors.runtime.AbstractActor
+
+
Callback function invoked after method is invoked.
+
+
onPreActorMethod(ActorMethodContext) - Method in class io.dapr.actors.runtime.AbstractActor
+
+
Callback function invoked before method is invoked.
+
+
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
+
+
+ Subscribes events from Pubsub
+
+
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
+
+
+ Subscribes events from Pubsub
+
+
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest, StreamObserver<DaprAppCallbackProtos.TopicEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
+
+
+ Subscribes events from Pubsub
+
+
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest, StreamObserver<DaprAppCallbackProtos.TopicEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
+
+
+ Subscribes events from Pubsub
+
+
OPERATION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
newBuilder(CommonProtos.InvokeResponse) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
OPERATIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
newBuilder(CommonProtos.StateItem) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
OPERATIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
newBuilder(CommonProtos.StateOptions) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
OPERATIONTYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
newBuilder(DaprAppCallbackProtos.BindingEventRequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
OPERATIONTYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
newBuilder(DaprAppCallbackProtos.BindingEventResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
OPTIONS - io.dapr.client.DaprHttp.HttpMethods
 
-
newBuilder(DaprAppCallbackProtos.HealthCheckResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
OPTIONS - io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
OPTIONS = 7;
+
+
OPTIONS - Static variable in class io.dapr.client.domain.HttpExtension
+
+
Convenience HttpExtension object for the DaprHttp.HttpMethods.OPTIONS Verb with empty queryString.
+
+
OPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
 
-
newBuilder(DaprAppCallbackProtos.ListInputBindingsResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
OPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
newBuilder(DaprAppCallbackProtos.ListTopicSubscriptionsResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
OPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
newBuilder(DaprAppCallbackProtos.TopicEventRequest) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
OPTIONS_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
OPTIONS = 7;
+
+
OrFilter - Class in io.dapr.client.domain.query.filters
 
-
newBuilder(DaprAppCallbackProtos.TopicEventResponse) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
OrFilter() - Constructor for class io.dapr.client.domain.query.filters.OrFilter
 
-
newBuilder(DaprAppCallbackProtos.TopicRoutes) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
+ + + +

P

+
+
Pagination - Class in io.dapr.client.domain.query
 
-
newBuilder(DaprAppCallbackProtos.TopicRule) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
Pagination(int, String) - Constructor for class io.dapr.client.domain.query.Pagination
 
-
newBuilder(DaprAppCallbackProtos.TopicSubscription) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
PARALLEL - io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
+
+ PARALLEL sends data to output bindings specified in "to" in parallel.
+
+
PARALLEL_VALUE - Static variable in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
+
+ PARALLEL sends data to output bindings specified in "to" in parallel.
+
+
PARALLELISM_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
newBuilder(DaprProtos.ActiveActorsCount) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parse(String) - Method in class io.dapr.config.BooleanProperty
+
+
Parses the value to the specific type.
+
+
parse(String) - Method in class io.dapr.config.GenericProperty
+
+
Parses the value to the specific type.
+
+
parse(String) - Method in class io.dapr.config.IntegerProperty
+
+
Parses the value to the specific type.
+
+
parse(String) - Method in class io.dapr.config.Property
+
+
Parses the value to the specific type.
+
+
parse(String) - Method in class io.dapr.config.StringProperty
+
+
Parses the value to the specific type.
+
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
newBuilder(DaprProtos.BulkStateItem) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
newBuilder(DaprProtos.DeleteBulkStateRequest) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
newBuilder(DaprProtos.DeleteStateRequest) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
newBuilder(DaprProtos.ExecuteActorStateTransactionRequest) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
newBuilder(DaprProtos.ExecuteStateTransactionRequest) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
newBuilder(DaprProtos.GetActorStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
newBuilder(DaprProtos.GetActorStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
newBuilder(DaprProtos.GetBulkSecretRequest) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
newBuilder(DaprProtos.GetBulkSecretResponse) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
newBuilder(DaprProtos.GetBulkStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
newBuilder(DaprProtos.GetBulkStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
newBuilder(DaprProtos.GetConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
newBuilder(DaprProtos.GetConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
newBuilder(DaprProtos.GetMetadataResponse) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
newBuilder(DaprProtos.GetSecretRequest) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
newBuilder(DaprProtos.GetSecretResponse) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
newBuilder(DaprProtos.GetStateRequest) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
newBuilder(DaprProtos.GetStateResponse) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
newBuilder(DaprProtos.InvokeActorRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
newBuilder(DaprProtos.InvokeActorResponse) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
newBuilder(DaprProtos.InvokeBindingRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
newBuilder(DaprProtos.InvokeBindingResponse) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
newBuilder(DaprProtos.InvokeServiceRequest) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
newBuilder(DaprProtos.PublishEventRequest) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
newBuilder(DaprProtos.QueryStateItem) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
newBuilder(DaprProtos.QueryStateRequest) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
newBuilder(DaprProtos.QueryStateResponse) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
newBuilder(DaprProtos.RegisterActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
newBuilder(DaprProtos.RegisterActorTimerRequest) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
newBuilder(DaprProtos.RegisteredComponents) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
newBuilder(DaprProtos.RenameActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
newBuilder(DaprProtos.SaveStateRequest) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
newBuilder(DaprProtos.SecretResponse) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
newBuilder(DaprProtos.SetMetadataRequest) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
newBuilder(DaprProtos.SubscribeConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
newBuilder(DaprProtos.SubscribeConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
newBuilder(DaprProtos.TransactionalActorStateOperation) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
newBuilder(DaprProtos.TransactionalStateOperation) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
newBuilder(DaprProtos.TryLockRequest) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
newBuilder(DaprProtos.TryLockResponse) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
newBuilder(DaprProtos.UnlockRequest) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
newBuilder(DaprProtos.UnlockResponse) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
newBuilder(DaprProtos.UnregisterActorReminderRequest) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
newBuilder(DaprProtos.UnregisterActorTimerRequest) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
newBuilder(DaprProtos.UnsubscribeConfigurationRequest) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
newBuilder(DaprProtos.UnsubscribeConfigurationResponse) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.Etag
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.StateItem
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
newBuilderForType() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.Etag
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.StateItem
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.CommonProtos.StateOptions
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
newBuilderForType(GeneratedMessageV3.BuilderParent) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
newFutureStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
-
-
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
-
newFutureStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
-
-
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
-
newFutureStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
-
-
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
newInstance(GeneratedMessageV3.UnusedPrivateParameter) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
newStub(Channel) - Static method in class io.dapr.v1.AppCallbackGrpc
-
-
Creates a new async stub that supports all call types for the service
-
-
newStub(Channel) - Static method in class io.dapr.v1.AppCallbackHealthCheckGrpc
-
-
Creates a new async stub that supports all call types for the service
-
-
newStub(Channel) - Static method in class io.dapr.v1.DaprGrpc
-
-
Creates a new async stub that supports all call types for the service
-
-
NONE - Enum constant in enum class io.dapr.actors.runtime.ActorStateChangeKind
-
-
No change in state.
-
-
NONE - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
NONE - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
-
NONE = 0;
-
-
NONE - Static variable in class io.dapr.client.domain.HttpExtension
-
-
Convenience HttpExtension object for DaprHttp.HttpMethods.NONE with empty queryString.
-
-
NONE_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
-
NONE = 0;
-
-
-

O

-
-
OBJECT_MAPPER - Static variable in class io.dapr.client.domain.CloudEvent
-
-
Shared Json serializer/deserializer as per Jackson's documentation.
-
-
OBJECT_MAPPER - Static variable in class io.dapr.client.ObjectSerializer
-
-
Shared Json serializer/deserializer as per Jackson's documentation.
-
-
objectSerializer - Variable in class io.dapr.client.DaprClientGrpc
-
-
A utility class for serialize and deserialize the transient objects.
-
-
ObjectSerializer - Class in io.dapr.client
-
-
Serializes and deserializes an internal object.
-
-
ObjectSerializer() - Constructor for class io.dapr.client.ObjectSerializer
-
-
Default constructor to avoid class from being instantiated outside package but still inherited.
-
-
OK_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
OLD_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
onActivate() - Method in class io.dapr.actors.runtime.AbstractActor
-
-
Callback function invoked after an Actor has been activated.
-
-
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
-
-
- Listens events from the input bindings - User application can save the states or send the events to the output - bindings optionally by returning BindingEventResponse.
-
-
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
-
-
- Listens events from the input bindings - User application can save the states or send the events to the output - bindings optionally by returning BindingEventResponse.
-
-
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest, StreamObserver<DaprAppCallbackProtos.BindingEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
-
-
- Listens events from the input bindings - User application can save the states or send the events to the output - bindings optionally by returning BindingEventResponse.
-
-
onBindingEvent(DaprAppCallbackProtos.BindingEventRequest, StreamObserver<DaprAppCallbackProtos.BindingEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
-
-
- Listens events from the input bindings - User application can save the states or send the events to the output - bindings optionally by returning BindingEventResponse.
-
-
onDeactivate() - Method in class io.dapr.actors.runtime.AbstractActor
-
-
Callback function invoked after an Actor has been deactivated.
-
-
onInvoke(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
-
-
- Invokes service method with InvokeRequest.
-
-
onInvoke(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
-
-
- Invokes service method with InvokeRequest.
-
-
onInvoke(CommonProtos.InvokeRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
-
-
- Invokes service method with InvokeRequest.
-
-
onInvoke(CommonProtos.InvokeRequest, StreamObserver<CommonProtos.InvokeResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
-
-
- Invokes service method with InvokeRequest.
-
-
onPostActorMethod(ActorMethodContext) - Method in class io.dapr.actors.runtime.AbstractActor
-
-
Callback function invoked after method is invoked.
-
-
onPreActorMethod(ActorMethodContext) - Method in class io.dapr.actors.runtime.AbstractActor
-
-
Callback function invoked before method is invoked.
-
-
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
-
-
- Subscribes events from Pubsub
-
-
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
-
-
- Subscribes events from Pubsub
-
-
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest, StreamObserver<DaprAppCallbackProtos.TopicEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
-
-
- Subscribes events from Pubsub
-
-
onTopicEvent(DaprAppCallbackProtos.TopicEventRequest, StreamObserver<DaprAppCallbackProtos.TopicEventResponse>) - Method in class io.dapr.v1.AppCallbackGrpc.AppCallbackStub
-
-
- Subscribes events from Pubsub
-
-
OPERATION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
OPERATIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
OPERATIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
OPERATIONTYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
OPERATIONTYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
OPTIONS - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
OPTIONS - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
-
OPTIONS = 7;
-
-
OPTIONS - Static variable in class io.dapr.client.domain.HttpExtension
-
-
Convenience HttpExtension object for the DaprHttp.HttpMethods.OPTIONS Verb with empty queryString.
-
-
OPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
OPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
OPTIONS_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
-
OPTIONS = 7;
-
-
OrFilter - Class in io.dapr.client.domain.query.filters
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
OrFilter() - Constructor for class io.dapr.client.domain.query.filters.OrFilter
+
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
-

P

-
-
Pagination - Class in io.dapr.client.domain.query
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
Pagination(int, String) - Constructor for class io.dapr.client.domain.query.Pagination
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
PARALLEL - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
-
- PARALLEL sends data to output bindings specified in "to" in parallel.
-
-
PARALLEL_VALUE - Static variable in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
-
- PARALLEL sends data to output bindings specified in "to" in parallel.
-
-
PARALLELISM_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parse(String) - Method in class io.dapr.config.BooleanProperty
-
-
Parses the value to the specific type.
-
-
parse(String) - Method in class io.dapr.config.GenericProperty
-
-
Parses the value to the specific type.
-
-
parse(String) - Method in class io.dapr.config.IntegerProperty
-
-
Parses the value to the specific type.
-
-
parse(String) - Method in class io.dapr.config.Property
-
-
Parses the value to the specific type.
-
-
parse(String) - Method in class io.dapr.config.StringProperty
-
-
Parses the value to the specific type.
-
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseDelimitedFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseDelimitedFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(byte[]) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(byte[], ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(ByteString) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(ByteString, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(CodedInputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(CodedInputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(InputStream) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(InputStream, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parseFrom(ByteBuffer) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.Etag
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parseNode(byte[]) - Method in class io.dapr.client.ObjectSerializer
+
+
Parses the JSON content into a node for fine-grained processing.
+
+
parser() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parser() - Static method in class io.dapr.v1.CommonProtos.Etag
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parser() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parser() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parser() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parser() - Static method in class io.dapr.v1.CommonProtos.StateItem
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parser() - Static method in class io.dapr.v1.CommonProtos.StateOptions
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parser() - Static method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
parseFrom(ByteBuffer, ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
parseNode(byte[]) - Method in class io.dapr.client.ObjectSerializer
-
-
Parses the JSON content into a node for fine-grained processing.
-
-
parser() - Static method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.Etag
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.HTTPExtension
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.InvokeRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.InvokeResponse
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.StateItem
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
parser() - Static method in class io.dapr.v1.CommonProtos.StateOptions
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
parser() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
parser() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
parser() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
parser() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.BulkStateItem
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.GetStateResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
+
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
parser() - Static method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
parser() - Static method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
parser() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
parser() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
 
-
PATCH - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
parser() - Static method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
parser() - Static method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
PATCH - io.dapr.v1.CommonProtos.HTTPExtension.Verb
PATCH = 9;
-
PATCH_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
PATCH_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
PATCH = 9;
-
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
PERIOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
PERIOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
PATH_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
POST - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
PERIOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
POST - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
PERIOD_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
 
+
POST - io.dapr.client.DaprHttp.HttpMethods
+
 
+
POST - io.dapr.v1.CommonProtos.HTTPExtension.Verb
POST = 3;
-
POST - Static variable in class io.dapr.client.domain.HttpExtension
+
POST - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.POST Verb with empty queryString.
-
POST_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
POST_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
POST = 3;
-
priority() - Element in annotation interface io.dapr.Rule
+
priority() - Method in annotation type io.dapr.Rule
Priority of the rule used for ordering.
-
propagate(Throwable) - Static method in exception io.dapr.exceptions.DaprException
+
propagate(Throwable) - Static method in exception io.dapr.exceptions.DaprException
Wraps an exception into DaprException (if not already DaprException).
-
Properties - Class in io.dapr.config
+
Properties - Class in io.dapr.config
Global properties for Dapr's SDK, using Supplier so they are dynamically resolved.
-
Properties() - Constructor for class io.dapr.config.Properties
+
Properties() - Constructor for class io.dapr.config.Properties
 
-
Property<T> - Class in io.dapr.config
+
Property<T> - Class in io.dapr.config
A configuration property in the Dapr's SDK.
-
publishEvent(PublishEventRequest) - Method in interface io.dapr.client.DaprClient
+
publishEvent(PublishEventRequest) - Method in interface io.dapr.client.DaprClient
Publish an event.
-
publishEvent(PublishEventRequest) - Method in class io.dapr.client.DaprClientGrpc
+
publishEvent(PublishEventRequest) - Method in class io.dapr.client.DaprClientGrpc
Publish an event.
-
publishEvent(PublishEventRequest) - Method in class io.dapr.client.DaprClientHttp
+
publishEvent(PublishEventRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Publish an event.
-
publishEvent(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
publishEvent(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Publishes events to the specific topic.
-
publishEvent(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
publishEvent(DaprProtos.PublishEventRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Publishes events to the specific topic.
-
publishEvent(DaprProtos.PublishEventRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
publishEvent(DaprProtos.PublishEventRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Publishes events to the specific topic.
-
publishEvent(DaprProtos.PublishEventRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
publishEvent(DaprProtos.PublishEventRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Publishes events to the specific topic.
-
publishEvent(String, String, Object) - Method in class io.dapr.client.DaprClientGrpc
+
publishEvent(String, String, Object) - Method in interface io.dapr.client.DaprClient
Publish an event.
-
publishEvent(String, String, Object) - Method in interface io.dapr.client.DaprClient
+
publishEvent(String, String, Object, Map<String, String>) - Method in interface io.dapr.client.DaprClient
Publish an event.
-
publishEvent(String, String, Object, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
+
PublishEventRequest - Class in io.dapr.client.domain
-
Publish an event.
+
A request to publish an event.
-
publishEvent(String, String, Object, Map<String, String>) - Method in interface io.dapr.client.DaprClient
+
PublishEventRequest(String, String, Object) - Constructor for class io.dapr.client.domain.PublishEventRequest
-
Publish an event.
+
Constructor for PublishEventRequest.
-
PublishEventRequest - Class in io.dapr.client.domain
+
publishEvents(BulkPublishRequest<T>) - Method in class io.dapr.client.DaprClientGrpc
-
A request to publish an event.
+
Publish multiple events to Dapr in a single request.
-
PublishEventRequest(String, String, Object) - Constructor for class io.dapr.client.domain.PublishEventRequest
+
publishEvents(BulkPublishRequest<T>) - Method in class io.dapr.client.DaprClientHttp
-
Constructor for PublishEventRequest.
+
Deprecated.
+
Publish multiple events to Dapr in a single request.
+
+
publishEvents(BulkPublishRequest<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
+
Publish multiple events to Dapr in a single request.
+
+
publishEvents(String, String, String, List<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
+
Publish multiple events to Dapr in a single request.
-
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
publishEvents(String, String, String, Map<String, String>, List<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
+
Publish multiple events to Dapr in a single request.
+
+
publishEvents(String, String, String, Map<String, String>, T...) - Method in interface io.dapr.client.DaprPreviewClient
+
+
Publish multiple events to Dapr in a single request.
+
+
publishEvents(String, String, String, T...) - Method in interface io.dapr.client.DaprPreviewClient
+
+
Publish multiple events to Dapr in a single request.
+
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
pubsubName() - Element in annotation interface io.dapr.Topic
+
PUBSUB_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
pubsubName() - Method in annotation type io.dapr.Topic
Name of the pubsub bus to be subscribed to.
-
PUT - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
PUT - io.dapr.client.DaprHttp.HttpMethods
 
-
PUT - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
PUT - io.dapr.v1.CommonProtos.HTTPExtension.Verb
PUT = 4;
-
PUT - Static variable in class io.dapr.client.domain.HttpExtension
+
PUT - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.PUT Verb with empty queryString.
-
PUT_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
PUT_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
PUT = 4;
-
putAllData(Map<String, DaprProtos.SecretResponse>) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
putAllData(Map<String, DaprProtos.SecretResponse>) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
putAllData(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
putAllData(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
putAllExtendedMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
putAllExtendedMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
map<string, string> extended_metadata = 4;
-
putAllItems(Map<String, CommonProtos.ConfigurationItem>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
putAllItems(Map<String, CommonProtos.ConfigurationItem>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
putAllItems(Map<String, CommonProtos.ConfigurationItem>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
putAllItems(Map<String, CommonProtos.ConfigurationItem>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
The list of items containing configuration values
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
the metadata which will be passed to/from configuration store component.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The metadata which will be passed to state store component.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
The metadata set by the input binging components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The metadata associated with the this bulk request.
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ The metadata associated with the event.
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional properties used for this topic's subscription e.g.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The request level metadata passing to to the pubsub components
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The event level metadata passing to the pubsub component
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The metadata which will be sent to app.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The metadata which will be sent to state store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
The metadata used for transactional operations.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The metadata which will be sent to secret store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The metadata which will be sent to state store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The metadata which will be sent to secret store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The metadata which will be sent to state store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The metadata which will be sent to app.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
map<string, string> metadata = 3;
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
map<string, string> metadata = 5;
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The metadata returned from an external system
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The metadata passing to pub components metadata property: - key : the key of the message.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
map<string, string> metadata = 3;
+
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The metadata which will be sent to state store components.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
The metadata which will be sent to app.
-
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
putAllMetadata(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The metadata which will be sent to configuration store components.
-
putAllSecrets(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
putAllOptions(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
map<string, string> options = 4;
+
+
putAllSecrets(Map<String, String>) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
map<string, string> secrets = 1;
-
putData(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
putData(String, DaprProtos.SecretResponse) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
putData(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
putData(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
putExtendedMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
putExtendedMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
map<string, string> extended_metadata = 4;
-
putItems(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
putItems(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
putItems(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
putItems(String, CommonProtos.ConfigurationItem) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
The list of items containing configuration values
-
putMetadata(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
the metadata which will be passed to/from configuration store component.
-
putMetadata(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The metadata which will be passed to state store component.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
The metadata set by the input binging components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The metadata associated with the this bulk request.
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ The metadata associated with the event.
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional properties used for this topic's subscription e.g.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The request level metadata passing to to the pubsub components
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The event level metadata passing to the pubsub component
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The metadata which will be sent to app.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The metadata which will be sent to state store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
The metadata used for transactional operations.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The metadata which will be sent to secret store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The metadata which will be sent to state store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The metadata which will be sent to secret store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The metadata which will be sent to state store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The metadata which will be sent to app.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
map<string, string> metadata = 3;
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
map<string, string> metadata = 5;
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The metadata returned from an external system
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The metadata passing to pub components metadata property: - key : the key of the message.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
map<string, string> metadata = 3;
+
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The metadata which will be sent to state store components.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
The metadata which will be sent to app.
-
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
putMetadata(String, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The metadata which will be sent to configuration store components.
-
putSecrets(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
putOptions(String, String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
map<string, string> options = 4;
+
+
putSecrets(String, String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
map<string, string> secrets = 1;
-

Q

-
-
Query - Class in io.dapr.client.domain.query
+ + + +

Q

+
+
Query - Class in io.dapr.client.domain.query
 
-
Query() - Constructor for class io.dapr.client.domain.query.Query
+
Query() - Constructor for class io.dapr.client.domain.query.Query
 
-
QUERY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
+
QUERY_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
queryState(QueryStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Query for states using a query request.
-
-
queryState(QueryStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
queryState(QueryStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
Query for states using a query request.
-
queryState(QueryStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(QueryStateRequest, TypeRef<T>) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Query for states using a query request.
-
queryState(QueryStateRequest, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
queryState(QueryStateRequest, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query request.
-
queryState(QueryStateRequest, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(QueryStateRequest, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query request.
-
queryState(String, Query, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Query for states using a query domain object.
-
-
queryState(String, Query, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
-
-
Query for states using a query domain object.
-
-
queryState(String, Query, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Query for states using a query domain object.
-
-
queryState(String, Query, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
-
-
Query for states using a query domain object.
-
-
queryState(String, Query, Map<String, String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
queryState(String, Query, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query domain object.
-
queryState(String, Query, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(String, Query, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query domain object.
-
queryState(String, Query, Map<String, String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
queryState(String, Query, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query domain object.
-
queryState(String, Query, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(String, Query, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query domain object.
-
queryState(String, String, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Query for states using a query string.
-
-
queryState(String, String, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(String, String, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query string.
-
queryState(String, String, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
+
queryState(String, String, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query string.
-
queryState(String, String, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
+
queryState(String, String, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query string.
-
queryState(String, String, Map<String, String>, TypeRef<T>) - Method in class io.dapr.client.DaprClientGrpc
+
queryState(String, String, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
Query for states using a query string.
-
queryState(String, String, Map<String, String>, TypeRef<T>) - Method in interface io.dapr.client.DaprPreviewClient
-
-
Query for states using a query string.
-
-
queryState(String, String, Map<String, String>, Class<T>) - Method in class io.dapr.client.DaprClientGrpc
-
-
Query for states using a query string.
-
-
queryState(String, String, Map<String, String>, Class<T>) - Method in interface io.dapr.client.DaprPreviewClient
-
-
Query for states using a query string.
-
-
queryStateAlpha1(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
queryStateAlpha1(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Queries the state.
-
queryStateAlpha1(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
queryStateAlpha1(DaprProtos.QueryStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Queries the state.
-
queryStateAlpha1(DaprProtos.QueryStateRequest, StreamObserver<DaprProtos.QueryStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
queryStateAlpha1(DaprProtos.QueryStateRequest, StreamObserver<DaprProtos.QueryStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Queries the state.
-
queryStateAlpha1(DaprProtos.QueryStateRequest, StreamObserver<DaprProtos.QueryStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
queryStateAlpha1(DaprProtos.QueryStateRequest, StreamObserver<DaprProtos.QueryStateResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Queries the state.
-
QueryStateItem<T> - Class in io.dapr.client.domain
+
QueryStateItem<T> - Class in io.dapr.client.domain
 
-
QueryStateItem(String) - Constructor for class io.dapr.client.domain.QueryStateItem
+
QueryStateItem(String) - Constructor for class io.dapr.client.domain.QueryStateItem
Create an immutable state reference to be retrieved or deleted.
-
QueryStateItem(String, String, String) - Constructor for class io.dapr.client.domain.QueryStateItem
+
QueryStateItem(String, String, String) - Constructor for class io.dapr.client.domain.QueryStateItem
Create an immutable state reference to be retrieved or deleted.
-
QueryStateItem(String, T, String) - Constructor for class io.dapr.client.domain.QueryStateItem
+
QueryStateItem(String, T, String) - Constructor for class io.dapr.client.domain.QueryStateItem
Create an immutable state.
-
QueryStateRequest - Class in io.dapr.client.domain
+
QueryStateRequest - Class in io.dapr.client.domain
 
-
QueryStateRequest(String) - Constructor for class io.dapr.client.domain.QueryStateRequest
+
QueryStateRequest(String) - Constructor for class io.dapr.client.domain.QueryStateRequest
 
-
QueryStateResponse<T> - Class in io.dapr.client.domain
+
QueryStateResponse<T> - Class in io.dapr.client.domain
 
-
QueryStateResponse(List<QueryStateItem<T>>, String) - Constructor for class io.dapr.client.domain.QueryStateResponse
+
QueryStateResponse(List<QueryStateItem<T>>, String) - Constructor for class io.dapr.client.domain.QueryStateResponse
 
-
QUERYSTRING_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.HTTPExtension
+
QUERYSTRING_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.HTTPExtension
 
-

R

-
-
receiveReminder(String, T, Duration, Duration) - Method in interface io.dapr.actors.runtime.Remindable
+ + + +

R

+
+
receiveReminder(String, T, Duration, Duration) - Method in interface io.dapr.actors.runtime.Remindable
The reminder call back invoked when an actor reminder is triggered.
-
registerActor(Class<T>) - Method in class io.dapr.actors.runtime.ActorRuntime
+
registerActor(Class<T>) - Method in class io.dapr.actors.runtime.ActorRuntime
Registers an actor with the runtime, using DefaultObjectSerializer and DefaultActorFactory.
-
registerActor(Class<T>, ActorFactory<T>) - Method in class io.dapr.actors.runtime.ActorRuntime
+
registerActor(Class<T>, ActorFactory<T>) - Method in class io.dapr.actors.runtime.ActorRuntime
Registers an actor with the runtime, using DefaultObjectSerializer.
-
registerActor(Class<T>, ActorFactory<T>, DaprObjectSerializer, DaprObjectSerializer) - Method in class io.dapr.actors.runtime.ActorRuntime
+
registerActor(Class<T>, ActorFactory<T>, DaprObjectSerializer, DaprObjectSerializer) - Method in class io.dapr.actors.runtime.ActorRuntime
Registers an actor with the runtime.
-
registerActor(Class<T>, DaprObjectSerializer, DaprObjectSerializer) - Method in class io.dapr.actors.runtime.ActorRuntime
+
registerActor(Class<T>, DaprObjectSerializer, DaprObjectSerializer) - Method in class io.dapr.actors.runtime.ActorRuntime
Registers an actor with the runtime.
-
registerActorReminder(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
registerActorReminder(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Register an actor reminder.
-
registerActorReminder(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
registerActorReminder(DaprProtos.RegisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Register an actor reminder.
-
registerActorReminder(DaprProtos.RegisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
registerActorReminder(DaprProtos.RegisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Register an actor reminder.
-
registerActorReminder(DaprProtos.RegisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
registerActorReminder(DaprProtos.RegisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Register an actor reminder.
-
registerActorTimer(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
registerActorTimer(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Register an actor timer.
-
registerActorTimer(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
registerActorTimer(DaprProtos.RegisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Register an actor timer.
-
registerActorTimer(DaprProtos.RegisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
registerActorTimer(DaprProtos.RegisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Register an actor timer.
-
registerActorTimer(DaprProtos.RegisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
registerActorTimer(DaprProtos.RegisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Register an actor timer.
-
registerActorTimer(String, String, T, Duration, Duration) - Method in class io.dapr.actors.runtime.AbstractActor
+
registerActorTimer(String, String, T, Duration, Duration) - Method in class io.dapr.actors.runtime.AbstractActor
Registers a Timer for the actor.
-
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.CommonProtos
+
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.CommonProtos
 
-
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.DaprAppCallbackProtos
+
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.DaprAppCallbackProtos
 
-
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.DaprProtos
+
registerAllExtensions(ExtensionRegistry) - Static method in class io.dapr.v1.DaprProtos
 
-
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos
+
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.CommonProtos
 
-
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos
+
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprAppCallbackProtos
 
-
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos
+
registerAllExtensions(ExtensionRegistryLite) - Static method in class io.dapr.v1.DaprProtos
 
-
REGISTERED_COMPONENTS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
REGISTERED_COMPONENTS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
registerReminder(String, T, Duration, Duration) - Method in class io.dapr.actors.runtime.AbstractActor
+
registerReminder(String, T, Duration, Duration) - Method in class io.dapr.actors.runtime.AbstractActor
Registers a reminder for this Actor.
-
Remindable<T> - Interface in io.dapr.actors.runtime
+
Remindable<T> - Interface in io.dapr.actors.runtime
Interface that actors must implement to consume reminders registered using RegisterReminderAsync.
-
remove(String) - Method in class io.dapr.actors.runtime.ActorStateManager
+
remove(String) - Method in class io.dapr.actors.runtime.ActorStateManager
Removes a given state from state store's cache.
-
REMOVE - Enum constant in enum class io.dapr.actors.runtime.ActorStateChangeKind
+
REMOVE - io.dapr.actors.runtime.ActorStateChangeKind
State needs to be removed.
-
removeActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
removeActiveActorsCount(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
removeData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
removeData(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
data hold the secret values.
-
removeData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
removeData(String) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
data is the secret value.
-
removeExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
removeEntries(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
removeEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
removeExtendedMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
map<string, string> extended_metadata = 4;
-
removeItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
removeFailedEntries(int) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
removeItems(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
removeItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
removeItems(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
map<string, .dapr.proto.common.v1.ConfigurationItem> items = 1;
-
removeItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
removeItems(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
The list of items containing configuration values
-
removeMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
the metadata which will be passed to/from configuration store component.
-
removeMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The metadata which will be passed to state store component.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
The metadata set by the input binging components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The metadata associated with the this bulk request.
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ The metadata associated with the event.
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional properties used for this topic's subscription e.g.
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The request level metadata passing to to the pubsub components
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
- The optional properties used for this topic's subscription e.g.
+ The event level metadata passing to the pubsub component
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The metadata which will be sent to app.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The metadata which will be sent to state store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
The metadata used for transactional operations.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The metadata which will be sent to secret store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The metadata which will be sent to state store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The metadata which will be sent to secret store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The metadata which will be sent to state store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The metadata which will be sent to app.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
map<string, string> metadata = 3;
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
map<string, string> metadata = 5;
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The metadata returned from an external system
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The metadata passing to pub components metadata property: - key : the key of the message.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
map<string, string> metadata = 3;
+
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The metadata which will be sent to state store components.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
The metadata which will be sent to app.
-
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
removeMetadata(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The metadata which will be sent to configuration store components.
-
removeOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
removeOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
removeOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
removeOperations(int) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
removeRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
removeOptions(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
map<string, string> options = 4;
+
+
removeRegisteredComponents(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
removeResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
removeResults(int) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
removeRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
removeRules(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
removeSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
removeRules(int) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
removeSecrets(String) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
map<string, string> secrets = 1;
-
removeStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
removeStates(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
removeStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
removeStates(int) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
removeStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
removeStates(int) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
removeSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
removeStatuses(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
removeSubscriptions(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
renameActorReminder(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
removeSubscriptions(int) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
renameActorReminder(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Rename an actor reminder.
-
renameActorReminder(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
renameActorReminder(DaprProtos.RenameActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Rename an actor reminder.
-
renameActorReminder(DaprProtos.RenameActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
renameActorReminder(DaprProtos.RenameActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Rename an actor reminder.
-
renameActorReminder(DaprProtos.RenameActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
renameActorReminder(DaprProtos.RenameActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Rename an actor reminder.
-
REQUEST_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
REQUEST_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
RESOURCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
RESOURCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
RESOURCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
+
RESOURCE_ID_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
Response(byte[], Map<String, String>, int) - Constructor for class io.dapr.client.DaprHttp.Response
+
Response(byte[], Map<String, String>, int) - Constructor for class io.dapr.client.DaprHttp.Response
Represents an http response.
-
RESULTS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
+
RESULTS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
RETRY - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
RETRY - io.dapr.client.domain.BulkSubscribeAppResponseStatus
+
 
+
RETRY - io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
RETRY status signals Dapr to retry the message as part of an expected scenario (no warning is logged).
-
RETRY_VALUE - Static variable in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
RETRY_VALUE - Static variable in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
RETRY status signals Dapr to retry the message as part of an expected scenario (no warning is logged).
-
returns() - Element in annotation interface io.dapr.actors.ActorMethod
+
returns() - Method in annotation type io.dapr.actors.ActorMethod
Actor's method return type.
-
ROUTES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
ROUTES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
rule() - Element in annotation interface io.dapr.Topic
+
rule() - Method in annotation type io.dapr.Topic
The rules used to match the incoming cloud event.
-
Rule - Annotation Interface in io.dapr
+
Rule - Annotation Type in io.dapr
+
 
+
RULES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
RULES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
RULES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
RULES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-

S

-
-
save() - Method in class io.dapr.actors.runtime.ActorStateManager
+ + + +

S

+
+
save() - Method in class io.dapr.actors.runtime.ActorStateManager
Saves all changes to state store.
-
saveBulkState(SaveStateRequest) - Method in interface io.dapr.client.DaprClient
-
-
Save/Update a list of states.
-
-
saveBulkState(SaveStateRequest) - Method in class io.dapr.client.DaprClientGrpc
+
saveBulkState(SaveStateRequest) - Method in interface io.dapr.client.DaprClient
Save/Update a list of states.
-
saveBulkState(SaveStateRequest) - Method in class io.dapr.client.DaprClientHttp
+
saveBulkState(SaveStateRequest) - Method in class io.dapr.client.DaprClientGrpc
Save/Update a list of states.
-
saveBulkState(String, List<State<?>>) - Method in class io.dapr.client.DaprClientGrpc
+
saveBulkState(SaveStateRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Save/Update a list of states.
-
saveBulkState(String, List<State<?>>) - Method in interface io.dapr.client.DaprClient
+
saveBulkState(String, List<State<?>>) - Method in interface io.dapr.client.DaprClient
Save/Update a list of states.
-
saveState() - Method in class io.dapr.actors.runtime.AbstractActor
+
saveState() - Method in class io.dapr.actors.runtime.AbstractActor
Saves the state of this Actor.
-
saveState(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
saveState(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Saves the state for a specific key.
-
saveState(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
saveState(DaprProtos.SaveStateRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Saves the state for a specific key.
-
saveState(DaprProtos.SaveStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
saveState(DaprProtos.SaveStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Saves the state for a specific key.
-
saveState(DaprProtos.SaveStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
saveState(DaprProtos.SaveStateRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Saves the state for a specific key.
-
saveState(String, String, Object) - Method in class io.dapr.client.DaprClientGrpc
-
-
Save/Update a state.
-
-
saveState(String, String, Object) - Method in interface io.dapr.client.DaprClient
+
saveState(String, String, Object) - Method in interface io.dapr.client.DaprClient
Save/Update a state.
-
saveState(String, String, String, Object, StateOptions) - Method in class io.dapr.client.DaprClientGrpc
+
saveState(String, String, String, Object, StateOptions) - Method in interface io.dapr.client.DaprClient
Save/Update a state.
-
saveState(String, String, String, Object, StateOptions) - Method in interface io.dapr.client.DaprClient
-
-
Save/Update a state.
-
-
SaveStateRequest - Class in io.dapr.client.domain
+
SaveStateRequest - Class in io.dapr.client.domain
A request to save states to state store.
-
SaveStateRequest(String) - Constructor for class io.dapr.client.domain.SaveStateRequest
+
SaveStateRequest(String) - Constructor for class io.dapr.client.domain.SaveStateRequest
Constructor for SaveStateRequest.
-
SECRETS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SecretResponse
+
SECRETS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SecretResponse
+
 
+
SEQ_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StreamPayload
 
-
SEQUENTIAL - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
SEQUENTIAL - io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
SEQUENTIAL sends data to output bindings specified in "to" sequentially.
-
SEQUENTIAL_VALUE - Static variable in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
SEQUENTIAL_VALUE - Static variable in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
SEQUENTIAL sends data to output bindings specified in "to" sequentially.
-
serialize(Object) - Method in class io.dapr.actors.runtime.ActorObjectSerializer
+
serialize(Object) - Method in class io.dapr.actors.runtime.ActorObjectSerializer
Serializes a given state object into byte array.
-
serialize(Object) - Method in class io.dapr.client.ObjectSerializer
+
serialize(Object) - Method in class io.dapr.client.ObjectSerializer
Serializes a given state object into byte array.
-
serialize(Object) - Method in interface io.dapr.serializer.DaprObjectSerializer
+
serialize(Object) - Method in interface io.dapr.serializer.DaprObjectSerializer
Serializes the given object as byte[].
-
serialize(Object) - Method in class io.dapr.serializer.DefaultObjectSerializer
+
serialize(Object) - Method in class io.dapr.serializer.DefaultObjectSerializer
Serializes a given state object into byte array.
-
serialize(Duration, JsonGenerator, SerializerProvider) - Method in class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
+
serialize(Duration, JsonGenerator, SerializerProvider) - Method in class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
 
-
serializeConfig() - Method in class io.dapr.actors.runtime.ActorRuntime
+
serializeConfig() - Method in class io.dapr.actors.runtime.ActorRuntime
Gets the Actor configuration for this runtime.
-
SERVICE_NAME - Static variable in class io.dapr.v1.AppCallbackGrpc
+
SERVICE_NAME - Static variable in class io.dapr.v1.AppCallbackAlphaGrpc
 
-
SERVICE_NAME - Static variable in class io.dapr.v1.AppCallbackHealthCheckGrpc
+
SERVICE_NAME - Static variable in class io.dapr.v1.AppCallbackGrpc
 
-
SERVICE_NAME - Static variable in class io.dapr.v1.DaprGrpc
+
SERVICE_NAME - Static variable in class io.dapr.v1.AppCallbackHealthCheckGrpc
 
-
set(String, T) - Method in class io.dapr.actors.runtime.ActorStateManager
+
SERVICE_NAME - Static variable in class io.dapr.v1.DaprGrpc
+
 
+
set(String, T) - Method in class io.dapr.actors.runtime.ActorStateManager
Updates a given key/value pair in the state store's cache.
-
setActiveActorsCount(int, DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setActiveActorsCount(int, DaprProtos.ActiveActorsCount) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
setActiveActorsCount(int, DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setActiveActorsCount(int, DaprProtos.ActiveActorsCount.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_id = 2;
-
setActorId(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setActorId(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_id = 2;
-
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setActorIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_id = 2;
-
setActorIdleTimeout(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
setActorIdleTimeout(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Sets the duration for Actors' timeout.
-
setActorScanInterval(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
setActorScanInterval(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Sets the duration to scan for Actors.
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_type = 1;
-
setActorType(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setActorType(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string actor_type = 1;
-
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setActorTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string actor_type = 1;
-
setBinaryData(byte[]) - Method in class io.dapr.client.domain.CloudEvent
+
setBinaryData(byte[]) - Method in class io.dapr.client.domain.CloudEvent
Sets the cloud event's binary data.
-
setBindings(int, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
setBindings(int, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
The list of input bindings.
-
setBody(Object) - Method in class io.dapr.client.domain.InvokeMethodRequest
+
setBody(Object) - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
setCallback(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setBulkSubscribe(DaprAppCallbackProtos.BulkSubscribeConfig) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
setBulkSubscribe(DaprAppCallbackProtos.BulkSubscribeConfig.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
+
+ The optional bulk subscribe settings for this topic.
+
+
setBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
bytes bytes = 2;
+
+
setCallback(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string callback = 6;
-
setCallbackBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setCallbackBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string callback = 6;
-
setCapabilities(int, String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setCapabilities(int, String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
repeated string capabilities = 4;
-
setConcurrency(CommonProtos.StateOptions.StateConcurrency) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setCloudEvent(DaprAppCallbackProtos.TopicEventCERequest) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
setCloudEvent(DaprAppCallbackProtos.TopicEventCERequest.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
.dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
+
+
setConcurrency(CommonProtos.StateOptions.StateConcurrency) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
setConcurrency(DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setConcurrency(DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The concurrency of output bindings to send data to "to" output bindings list.
-
setConcurrencyValue(int) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setConcurrencyValue(int) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
-
setConcurrencyValue(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setConcurrencyValue(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The concurrency of output bindings to send data to "to" output bindings list.
-
setConsistency(CommonProtos.StateOptions.StateConsistency) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setConsistency(CommonProtos.StateOptions.StateConsistency) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
setConsistency(CommonProtos.StateOptions.StateConsistency) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setConsistency(CommonProtos.StateOptions.StateConsistency) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The read consistency of the state store.
-
setConsistencyValue(int) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setConsistencyValue(int) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
.dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
-
setConsistencyValue(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setConsistencyValue(int) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The read consistency of the state store.
-
setContentType(String) - Method in class io.dapr.client.domain.InvokeMethodRequest
+
setContentType(String) - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
setContentType(String) - Method in class io.dapr.client.domain.PublishEventRequest
+
setContentType(String) - Method in class io.dapr.client.domain.PublishEventRequest
 
-
setContentType(String) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setContentType(String) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
The type of data content.
-
setContentType(String) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setContentType(String) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
Required.
-
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setContentType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ content type of the event contained.
+
+
setContentType(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The content type for the event
+
+
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
The type of data content.
-
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
Required.
-
setCount(int) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ content type of the event contained.
+
+
setContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The content type for the event
+
+
setCount(int) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
int32 count = 2;
-
setData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Required.
+ Required in unary RPCs.
-
setData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setData(Any) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Required.
+ Required in unary RPCs.
-
setData(Any.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setData(Any.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
- Required.
+ Required in unary RPCs.
-
setData(Any.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setData(Any.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
- Required.
+ Required in unary RPCs. +
+
setData(ByteString) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Data sent in the chunk.
-
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The content which will be sent to "to" output bindings.
-
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content of the event.
+
+
setData(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content of the event.
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The byte array data
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
bytes data = 1;
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The byte array data
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
bytes data = 4;
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
bytes data = 1;
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The data which will be sent to output binding.
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
The data which will be sent to output binding.
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The data which will be published to topic.
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object value.
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
bytes data = 6;
-
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setData(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
bytes data = 7;
-
setData(Object) - Method in class io.dapr.client.domain.InvokeBindingRequest
+
setData(Object) - Method in class io.dapr.client.domain.InvokeBindingRequest
 
-
setData(T) - Method in class io.dapr.client.domain.CloudEvent
+
setData(T) - Method in class io.dapr.client.domain.CloudEvent
Sets the cloud event data.
-
setDatacontenttype(String) - Method in class io.dapr.client.domain.CloudEvent
+
setDatacontenttype(String) - Method in class io.dapr.client.domain.CloudEvent
Sets the type of the data's content.
-
setDataContentType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setDataContentType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
The content type of data value.
-
setDataContentType(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setDataContentType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The content type of data value.
+
+
setDataContentType(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The content type for the data (optional).
-
setDataContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setDataContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The content type of data value.
+
+
setDataContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The content type of data value.
-
setDataContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setDataContentTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The content type for the data (optional).
-
setDeadLetterTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setDeadLetterTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional dead letter queue for this topic to send events to.
-
setDeadLetterTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setDeadLetterTopic(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string dead_letter_topic = 5;
+
+
setDeadLetterTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional dead letter queue for this topic to send events to.
-
setDefault(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setDeadLetterTopicBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string dead_letter_topic = 5;
+
+
setDefault(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The default path for this topic.
-
setDefaultBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setDefaultBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The default path for this topic.
-
setDrainBalancedActors(Boolean) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
setDrainBalancedActors(Boolean) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Sets whether balanced actors should be drained.
-
setDrainOngoingCallTimeout(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
setDrainOngoingCallTimeout(Duration) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Sets the timeout to drain ongoing calls.
-
setDueTime(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setDueTime(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string due_time = 4;
-
setDueTime(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setDueTime(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string due_time = 4;
-
setDueTimeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setDueTimeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string due_time = 4;
-
setDueTimeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setDueTimeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string due_time = 4;
-
setError(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setEnabled(boolean) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Required.
+
+
setEntries(int, DaprAppCallbackProtos.TopicEventBulkRequestEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
setEntries(int, DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The list of items inside this bulk request.
+
+
setEntries(int, DaprProtos.BulkPublishRequestEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
setEntries(int, DaprProtos.BulkPublishRequestEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The entries which contain the individual events and associated details to be published
+
+
setEntryId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ Unique identifier for the message.
+
+
setEntryId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ Unique identifier associated the message.
+
+
setEntryId(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The request scoped unique ID referring to this message.
+
+
setEntryId(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The response scoped unique ID referring to this message
+
+
setEntryIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
+
+ Unique identifier for the message.
+
+
setEntryIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ Unique identifier associated the message.
+
+
setEntryIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The request scoped unique ID referring to this message.
+
+
setEntryIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The response scoped unique ID referring to this message
+
+
setError(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The error message if any on failure
+
+
setError(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The error that was returned from the state store in case of a failed get operation.
-
setError(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setError(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The error message indicating an error in processing of the query result.
-
setErrorBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setErrorBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
+
+
+ The error message if any on failure
+
+
setErrorBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The error that was returned from the state store in case of a failed get operation.
-
setErrorBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setErrorBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The error message indicating an error in processing of the query result.
-
setErrorCode(String) - Method in class io.dapr.exceptions.DaprError
+
setErrorCode(String) - Method in class io.dapr.exceptions.DaprError
Sets the error code.
-
setEtag(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setEtag(CommonProtos.Etag) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The entity tag which represents the specific version of data.
-
setEtag(CommonProtos.Etag) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setEtag(CommonProtos.Etag) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The entity tag which represents the specific version of data.
-
setEtag(CommonProtos.Etag.Builder) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setEtag(CommonProtos.Etag.Builder) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
The entity tag which represents the specific version of data.
-
setEtag(CommonProtos.Etag.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setEtag(CommonProtos.Etag.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The entity tag which represents the specific version of data.
-
setEtag(String) - Method in class io.dapr.client.domain.DeleteStateRequest
+
setEtag(String) - Method in class io.dapr.client.domain.DeleteStateRequest
 
-
setEtag(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setEtag(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The entity tag which represents the specific version of data.
-
setEtag(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setEtag(String) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The entity tag which represents the specific version of data.
-
setEtag(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setEtag(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The entity tag which represents the specific version of data.
-
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
The entity tag which represents the specific version of data.
-
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
The entity tag which represents the specific version of data.
-
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setEtagBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The entity tag which represents the specific version of data.
-
setExpiryInSeconds(int) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setEvent(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
+
+
+ The event which will be pulished to the topic
+
+
setExpiryInSeconds(int) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setExtensions(Struct) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ Custom attributes which includes cloud event extensions.
+
+
setExtensions(Struct) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The map of additional custom properties to be sent to the app.
+
+
setExtensions(Struct.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ Custom attributes which includes cloud event extensions.
+
+
setExtensions(Struct.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The map of additional custom properties to be sent to the app.
+
+
setFailedEntries(int, DaprProtos.BulkPublishResponseFailedEntry) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
setFailedEntries(int, DaprProtos.BulkPublishResponseFailedEntry.Builder) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
+
+
+ The entries for different events that failed publish in the BulkPublishEvent call
+
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
 
-
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
 
-
setFilter(Filter<?>) - Method in class io.dapr.client.domain.query.Query
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
setField(Descriptors.FieldDescriptor, Object) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
setFilter(Filter<?>) - Method in class io.dapr.client.domain.query.Query
Set the filter field in the instance.
-
setHttpExtension(HttpExtension) - Method in class io.dapr.client.domain.InvokeMethodRequest
+
setHttpExtension(HttpExtension) - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
setHttpExtension(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setHttpExtension(CommonProtos.HTTPExtension) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
HTTP specific fields if request conveys http-compatible request.
-
setHttpExtension(CommonProtos.HTTPExtension.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setHttpExtension(CommonProtos.HTTPExtension.Builder) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
HTTP specific fields if request conveys http-compatible request.
-
setId(String) - Method in class io.dapr.client.domain.CloudEvent
+
setId(String) - Method in class io.dapr.client.domain.CloudEvent
Sets the identifier of the message being processed.
-
setId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ Unique identifier for the bulk request.
+
+
setId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The unique identifier of this cloud event.
+
+
setId(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
id identifies the event.
-
setId(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setId(String) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
string id = 1;
-
setId(String) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setId(String) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
setId(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
setId(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
Subscribe id, used to stop subscription.
-
setId(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setId(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The id to unsubscribe.
-
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ Unique identifier for the bulk request.
+
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The unique identifier of this cloud event.
+
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
id identifies the event.
-
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
string id = 1;
-
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
Subscribe id, used to stop subscription.
-
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The id to unsubscribe.
-
setItems(int, DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
setInput(ByteString) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
bytes input = 5;
+
+
setInstanceId(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceId(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
string instance_id = 1;
+
+
setInstanceId(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceId(String) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceId(String) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
+
string instance_id = 1;
+
+
setInstanceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
string instance_id = 1;
+
+
setInstanceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string instance_id = 1;
+
+
setInstanceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
+
string instance_id = 1;
+
+
setItems(int, DaprProtos.BulkStateItem) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
setItems(int, DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
setItems(int, DaprProtos.BulkStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
The list of items containing the keys to get values for.
-
setKey(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setKey(String) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Required.
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
state item key
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The key of the desired state
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string key = 3;
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret key.
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The key of the desired state
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object key.
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string key = 1;
-
setKey(String) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setKey(String) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string key = 2;
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Required.
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
state item key
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The key of the desired state
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
string key = 3;
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret key.
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The key of the desired state
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
The object key.
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string key = 1;
-
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setKeyBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string key = 2;
-
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The keys to get.
-
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Optional.
-
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setKeys(int, String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
Optional.
-
setLockOwner(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setLockOwner(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setLockOwner(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setLockOwner(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string lock_owner = 3;
-
setLockOwnerBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setLockOwnerBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setLockOwnerBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setLockOwnerBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string lock_owner = 3;
-
setMatch(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setMatch(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The optional CEL expression used to match the event.
-
setMatchBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setMatch(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string match = 1;
+
+
setMatchBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The optional CEL expression used to match the event.
-
setMessage(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setMatchBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string match = 1;
+
+
setMaxAwaitDurationMs(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Optional.
+
+
setMaxMessagesCount(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
+
+ Optional.
+
+
setMessage(CommonProtos.InvokeRequest) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
setMessage(CommonProtos.InvokeRequest.Builder) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setMessage(CommonProtos.InvokeRequest.Builder) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
Required.
-
setMessage(String) - Method in class io.dapr.exceptions.DaprError
+
setMessage(String) - Method in class io.dapr.exceptions.DaprError
Sets the error message.
-
setMessage(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setMessage(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
string message = 2;
-
setMessageBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setMessageBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
string message = 2;
-
setMetadata(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
setMetadata(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Sets value in extended metadata of the sidecar
-
setMetadata(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
setMetadata(DaprProtos.SetMetadataRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Sets value in extended metadata of the sidecar
-
setMetadata(DaprProtos.SetMetadataRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
setMetadata(DaprProtos.SetMetadataRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Sets value in extended metadata of the sidecar
-
setMetadata(DaprProtos.SetMetadataRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
setMetadata(DaprProtos.SetMetadataRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Sets value in extended metadata of the sidecar
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.DeleteStateRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.BulkPublishRequest
+
 
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.DeleteStateRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetBulkSecretRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetBulkSecretRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetBulkStateRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetBulkStateRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetConfigurationRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetConfigurationRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetSecretRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetSecretRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetStateRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.GetStateRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.InvokeBindingRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.InvokeBindingRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.InvokeMethodRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.InvokeMethodRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.PublishEventRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.PublishEventRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.QueryStateRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.QueryStateRequest
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.QueryStateResponse
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.QueryStateResponse
 
-
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
+
setMetadata(Map<String, String>) - Method in class io.dapr.client.domain.SubscribeConfigurationRequest
 
-
setMethod(String) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setMethod(String) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
Required.
-
setMethod(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setMethod(String) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string method = 3;
-
setMethodBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setMethodBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
Required.
-
setMethodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setMethodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
string method = 3;
-
setName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
setName(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the output binding to invoke.
-
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string name = 3;
-
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string name = 3;
-
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string name = 1;
-
setName(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string name = 3;
-
setName(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setName(String) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string name = 3;
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
Required.
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the output binding to invoke.
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string name = 3;
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string name = 3;
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string name = 1;
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
string name = 3;
-
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
string name = 3;
-
setNewName(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setNewName(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string new_name = 4;
-
setNewNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setNewNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string new_name = 4;
-
setOk(boolean) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setOk(boolean) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
bool ok = 1;
-
setOldName(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setOldName(String) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string old_name = 3;
-
setOldNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setOldNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
string old_name = 3;
-
setOperation(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setOperation(String) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the operation type for the binding to invoke
-
setOperationBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setOperationBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
The name of the operation type for the binding to invoke
-
setOperations(int, DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setOperations(int, DaprProtos.TransactionalActorStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
setOperations(int, DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setOperations(int, DaprProtos.TransactionalActorStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
-
setOperations(int, DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setOperations(int, DaprProtos.TransactionalStateOperation) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
setOperations(int, DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setOperations(int, DaprProtos.TransactionalStateOperation.Builder) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
setOperations(List<TransactionalStateOperation<?>>) - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
+
setOperations(List<TransactionalStateOperation<?>>) - Method in class io.dapr.client.domain.ExecuteStateTransactionRequest
 
-
setOperationType(String) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setOperationType(String) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string operationType = 1;
-
setOperationType(String) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setOperationType(String) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
The type of operation to be executed
-
setOperationTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setOperationTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
string operationType = 1;
-
setOperationTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setOperationTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
The type of operation to be executed
-
setOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Options for concurrency and consistency to save the state.
-
setOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setOptions(CommonProtos.StateOptions) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
State operation options which includes concurrency/ consistency/retry_policy.
-
setOptions(CommonProtos.StateOptions.Builder) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setOptions(CommonProtos.StateOptions.Builder) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Options for concurrency and consistency to save the state.
-
setOptions(CommonProtos.StateOptions.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setOptions(CommonProtos.StateOptions.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
State operation options which includes concurrency/ consistency/retry_policy.
-
setPagination(Pagination) - Method in class io.dapr.client.domain.query.Query
+
setPagination(Pagination) - Method in class io.dapr.client.domain.query.Query
 
-
setParallelism(int) - Method in class io.dapr.client.domain.GetBulkStateRequest
+
setParallelism(int) - Method in class io.dapr.client.domain.GetBulkStateRequest
 
-
setParallelism(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setParallelism(int) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The number of parallel operations executed on the state store for a get operation.
-
setPath(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setPath(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The matching path from TopicSubscription/routes (if specified) for this event.
+
+
setPath(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The matching path from TopicSubscription/routes (if specified) for this event.
-
setPath(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setPath(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The path used to identify matches for this subscription.
-
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setPath(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string path = 2;
+
+
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
The matching path from TopicSubscription/routes (if specified) for this event.
-
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The matching path from TopicSubscription/routes (if specified) for this event.
+
+
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
The path used to identify matches for this subscription.
-
setPeriod(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setPathBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
+
+
string path = 2;
+
+
setPeriod(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string period = 5;
-
setPeriod(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setPeriod(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string period = 5;
-
setPeriodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setPeriodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string period = 5;
-
setPeriodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setPeriodBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string period = 5;
-
setPubsubName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setPubsubName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The name of the pubsub the publisher sent to.
+
+
setPubsubName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The name of the pubsub the publisher sent to.
-
setPubsubName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setPubsubName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
setPubsubName(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setPubsubName(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The name of the pubsub component
+
+
setPubsubName(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The name of the pubsub component
-
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setPubsubName(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string pubsub_name = 1;
+
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
The name of the pubsub the publisher sent to.
-
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The name of the pubsub the publisher sent to.
+
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The name of the pubsub component
+
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The name of the pubsub component
-
setQuery(Query) - Method in class io.dapr.client.domain.QueryStateRequest
+
setPubsubNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string pubsub_name = 1;
+
+
setQuery(Query) - Method in class io.dapr.client.domain.QueryStateRequest
Validate and set the query field.
-
setQuery(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setQuery(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The query in JSON format.
-
setQueryBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setQueryBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The query in JSON format.
-
setQuerystring(String) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setQuerystring(String) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Optional.
-
setQueryString(String) - Method in class io.dapr.client.domain.QueryStateRequest
+
setQueryString(String) - Method in class io.dapr.client.domain.QueryStateRequest
Validate and set the queryString field.
-
setQuerystringBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setQuerystringBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Optional.
-
setRegisteredComponents(int, DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setRegisteredComponents(int, DaprProtos.RegisteredComponents) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
setRegisteredComponents(int, DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setRegisteredComponents(int, DaprProtos.RegisteredComponents.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
-
setRemindersStoragePartitions(Integer) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
+
setRemindersStoragePartitions(Integer) - Method in class io.dapr.actors.runtime.ActorRuntimeConfig
Sets the number of storage partitions for Actor reminders.
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
 
-
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
 
-
setRequest(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
setRepeatedField(Descriptors.FieldDescriptor, int, Object) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
setRequest(CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
State values to be operated on
-
setRequest(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setRequest(CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
State values to be operated on
-
setResourceId(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setResourceId(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setResourceId(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setResourceId(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
resource_id is the lock key.
-
setResourceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setResourceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setResourceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setResourceIdBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
resource_id is the lock key.
-
setResults(int, DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setResults(int, DaprProtos.QueryStateItem) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
setResults(int, DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setResults(int, DaprProtos.QueryStateItem.Builder) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
An array of query results.
-
setRoutes(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setRoutes(DaprAppCallbackProtos.TopicRoutes) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional routing rules to match against.
-
setRoutes(DaprAppCallbackProtos.TopicRoutes.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setRoutes(DaprAppCallbackProtos.TopicRoutes.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
The optional routing rules to match against.
-
setRules(int, DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setRules(int, DaprAppCallbackProtos.TopicRule) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
setRules(int, DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setRules(int, DaprAppCallbackProtos.TopicRule.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
The list of rules for this topic.
-
setSort(List<Sorting>) - Method in class io.dapr.client.domain.query.Query
+
setRules(int, DaprProtos.PubsubSubscriptionRule) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
setRules(int, DaprProtos.PubsubSubscriptionRule.Builder) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscriptionRule rules = 1;
+
+
setRules(DaprProtos.PubsubSubscriptionRules) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
setRules(DaprProtos.PubsubSubscriptionRules.Builder) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
.dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
+
+
setSeq(int) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
+
+ Sequence number.
+
+
setSort(List<Sorting>) - Method in class io.dapr.client.domain.query.Query
Validate and set sorting field.
-
setSource(String) - Method in class io.dapr.client.domain.CloudEvent
+
setSource(String) - Method in class io.dapr.client.domain.CloudEvent
Sets the event's source.
-
setSource(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setSource(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ source identifies the context in which an event happened.
+
+
setSource(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ source identifies the context in which an event happened.
+
+
setSourceBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
source identifies the context in which an event happened.
-
setSourceBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setSourceBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
source identifies the context in which an event happened.
-
setSpecversion(String) - Method in class io.dapr.client.domain.CloudEvent
+
setSpecversion(String) - Method in class io.dapr.client.domain.CloudEvent
Sets the version of the specification.
-
setSpecVersion(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setSpecVersion(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The version of the CloudEvents specification.
+
+
setSpecVersion(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
+
+ The version of the CloudEvents specification.
+
+
setSpecVersionBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
The version of the CloudEvents specification.
-
setSpecVersionBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setSpecVersionBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The version of the CloudEvents specification.
-
setStateOptions(StateOptions) - Method in class io.dapr.client.domain.DeleteStateRequest
+
setStartTime(long) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
+
+
int64 start_time = 2;
+
+
setStateOptions(StateOptions) - Method in class io.dapr.client.domain.DeleteStateRequest
 
-
setStateOptions(StateOptions) - Method in class io.dapr.client.domain.GetStateRequest
+
setStateOptions(StateOptions) - Method in class io.dapr.client.domain.GetStateRequest
 
-
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setStates(int, CommonProtos.StateItem) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The state key values which will be stored in store_name.
-
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The array of the state key values.
-
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setStates(int, CommonProtos.StateItem.Builder) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The array of the state key values.
-
setStates(State<?>...) - Method in class io.dapr.client.domain.SaveStateRequest
+
setStates(State<?>...) - Method in class io.dapr.client.domain.SaveStateRequest
 
-
setStates(List<State<?>>) - Method in class io.dapr.client.domain.SaveStateRequest
+
setStates(List<State<?>>) - Method in class io.dapr.client.domain.SaveStateRequest
 
-
setStatus(DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
setStatus(DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ The status of the response.
+
+
setStatus(DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
The list of output bindings.
-
setStatus(DaprProtos.UnlockResponse.Status) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
setStatus(DaprProtos.UnlockResponse.Status) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
-
setStatusValue(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
setStatuses(int, DaprAppCallbackProtos.TopicEventBulkResponseEntry) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
setStatuses(int, DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
+
+
+ The list of all responses for the bulk request.
+
+
setStatusValue(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
+
+
+ The status of the response.
+
+
setStatusValue(int) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
The list of output bindings.
-
setStatusValue(int) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
setStatusValue(int) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
.dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
-
setStoreName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The name of state store where states are saved.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The name of secret store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Required.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The name of state store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The name of configuration store.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string store_name = 1;
-
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setStoreName(String) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The name of configuration store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The name of state store where states are saved.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
Required.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
The name of secret store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
Required.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
The name of secret store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
The name of state store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
The name of configuration store.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
Required.
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
string store_name = 1;
-
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setStoreNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
The name of configuration store.
-
setSubscriptions(int, DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
setSubscriptions(int, DaprAppCallbackProtos.TopicSubscription) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
setSubscriptions(int, DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
setSubscriptions(int, DaprAppCallbackProtos.TopicSubscription.Builder) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
The list of topics.
-
setSuccess(boolean) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
setSubscriptions(int, DaprProtos.PubsubSubscription) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
setSubscriptions(int, DaprProtos.PubsubSubscription.Builder) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
+
repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
+
+
setSuccess(boolean) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
bool success = 1;
-
setTo(int, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setTo(int, String) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
The list of output bindings.
-
setToken(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setToken(String) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
Pagination token.
-
setTokenBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setTokenBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
Pagination token.
-
setTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
setTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The pubsub topic which publisher sent to.
-
setTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setTopic(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
setTopic(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setTopic(String) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The pubsub topic
+
+
setTopic(String) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The pubsub topic
-
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setTopic(String) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string topic = 2;
+
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The pubsub topic which publisher sent to.
+
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The pubsub topic which publisher sent to.
-
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
Required.
-
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
+
+
+ The pubsub topic
+
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
The pubsub topic
-
setTtl(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setTopicBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
+
+
string topic = 2;
+
+
setTtl(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string ttl = 7;
-
setTtl(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setTtl(String) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string ttl = 8;
-
setTtlBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setTtlBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
string ttl = 7;
-
setTtlBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setTtlBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
string ttl = 8;
-
setType(String) - Method in class io.dapr.client.domain.CloudEvent
+
setType(String) - Method in class io.dapr.client.domain.CloudEvent
Sets the envelope type.
-
setType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
setType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
setType(String) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The type of event related to the originating occurrence.
-
setType(String) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setType(String) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
string type = 1;
-
setType(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setType(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string type = 2;
-
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
+
+
+ The type of event related to the originating occurrence.
+
+
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
The type of event related to the originating occurrence.
-
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
string type = 1;
-
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string type = 2;
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StreamPayload.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.InvokeResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.CommonProtos.StateOptions.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.BulkStateItem.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetStateResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateItem.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SecretResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
 
-
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder
 
-
setValue(Any) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.TryLockResponse.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnlockResponse.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
+
 
+
setUnknownFields(UnknownFieldSet) - Method in class io.dapr.v1.DaprProtos.WorkflowReference.Builder
+
 
+
setValue(Any) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
.google.protobuf.Any value = 3;
-
setValue(Any.Builder) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
+
setValue(Any.Builder) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
.google.protobuf.Any value = 3;
-
setValue(ByteString) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
+
setValue(ByteString) - Method in class io.dapr.v1.CommonProtos.StateItem.Builder
Required.
-
setValue(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setValue(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Required.
-
setValue(String) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
setValue(String) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
value sets the etag value
-
setValue(String) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setValue(String) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string value = 2;
-
setValueBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setValueBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Required.
-
setValueBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
+
setValueBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.Etag.Builder
value sets the etag value
-
setValueBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
+
setValueBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
string value = 2;
-
setVerb(CommonProtos.HTTPExtension.Verb) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setVerb(CommonProtos.HTTPExtension.Verb) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Required.
-
setVerbValue(int) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
+
setVerbValue(int) - Method in class io.dapr.v1.CommonProtos.HTTPExtension.Builder
Required.
-
setVersion(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setVersion(String) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Version is response only and cannot be fetched.
-
setVersion(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setVersion(String) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string version = 3;
-
setVersionBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
+
setVersionBytes(ByteString) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem.Builder
Version is response only and cannot be fetched.
-
setVersionBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
+
setVersionBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents.Builder
string version = 3;
-
shutdown() - Method in interface io.dapr.client.DaprClient
+
setWorkflowComponent(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_component = 3;
+
+
setWorkflowComponent(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
setWorkflowComponent(String) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
setWorkflowComponentBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_component = 3;
+
+
setWorkflowComponentBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
setWorkflowComponentBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder
+
+
string workflow_component = 2;
+
+
setWorkflowName(String) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_name = 3;
+
+
setWorkflowNameBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder
+
+
string workflow_name = 3;
+
+
setWorkflowType(String) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_type = 2;
+
+
setWorkflowTypeBytes(ByteString) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder
+
+
string workflow_type = 2;
+
+
SHORT - Static variable in class io.dapr.utils.TypeRef
+
 
+
shutdown() - Method in interface io.dapr.client.DaprClient
Gracefully shutdown the dapr runtime.
-
shutdown() - Method in class io.dapr.client.DaprClientGrpc
+
shutdown() - Method in class io.dapr.client.DaprClientGrpc
Gracefully shutdown the dapr runtime.
-
shutdown() - Method in class io.dapr.client.DaprClientHttp
+
shutdown() - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Gracefully shutdown the dapr runtime.
-
shutdown(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
shutdown(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Shutdown the sidecar
-
shutdown(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
shutdown(Empty) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Shutdown the sidecar
-
shutdown(Empty, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
shutdown(Empty, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Shutdown the sidecar
-
shutdown(Empty, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
shutdown(Empty, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Shutdown the sidecar
-
SIDECAR_IP - Static variable in class io.dapr.config.Properties
+
SIDECAR_IP - Static variable in class io.dapr.config.Properties
IP for Dapr's sidecar.
-
Sorting - Class in io.dapr.client.domain.query
+
Sorting - Class in io.dapr.client.domain.query
 
-
Sorting(String, Sorting.Order) - Constructor for class io.dapr.client.domain.query.Sorting
+
Sorting(String, Sorting.Order) - Constructor for class io.dapr.client.domain.query.Sorting
 
-
Sorting.Order - Enum Class in io.dapr.client.domain.query
+
Sorting.Order - Enum in io.dapr.client.domain.query
 
-
SOURCE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
SOURCE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
SPEC_VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
SOURCE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
State<T> - Class in io.dapr.client.domain
+
SPEC_VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
+
 
+
SPEC_VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
START_TIME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowResponse
+
 
+
startWorkflowAlpha1(DaprProtos.StartWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
+
+ Start Workflow
+
+
startWorkflowAlpha1(DaprProtos.StartWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
+
+ Start Workflow
+
+
startWorkflowAlpha1(DaprProtos.StartWorkflowRequest, StreamObserver<DaprProtos.WorkflowReference>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
+
+ Start Workflow
+
+
startWorkflowAlpha1(DaprProtos.StartWorkflowRequest, StreamObserver<DaprProtos.WorkflowReference>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
+
+ Start Workflow
+
+
State<T> - Class in io.dapr.client.domain
This class reprent what a State is.
-
State(String) - Constructor for class io.dapr.client.domain.State
+
State(String) - Constructor for class io.dapr.client.domain.State
Create an immutable state reference to be retrieved or deleted.
-
State(String, String) - Constructor for class io.dapr.client.domain.State
+
State(String, String) - Constructor for class io.dapr.client.domain.State
Create an immutable state.
-
State(String, String, StateOptions) - Constructor for class io.dapr.client.domain.State
+
State(String, String, StateOptions) - Constructor for class io.dapr.client.domain.State
Create an immutable state reference to be retrieved or deleted.
-
State(String, T, String) - Constructor for class io.dapr.client.domain.State
+
State(String, T, String) - Constructor for class io.dapr.client.domain.State
Create an immutable state.
-
State(String, T, String, StateOptions) - Constructor for class io.dapr.client.domain.State
+
State(String, T, String, StateOptions) - Constructor for class io.dapr.client.domain.State
Create an immutable state.
-
State(String, T, String, Map<String, String>, StateOptions) - Constructor for class io.dapr.client.domain.State
+
State(String, T, String, Map<String, String>, StateOptions) - Constructor for class io.dapr.client.domain.State
Create an immutable state.
-
StateOptionDurationDeserializer(Class<?>) - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
+
StateOptionDurationDeserializer(Class<?>) - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
 
-
StateOptionDurationSerializer() - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
+
StateOptionDurationSerializer() - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
 
-
StateOptionDurationSerializer(Class<Duration>) - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
+
StateOptionDurationSerializer(Class<Duration>) - Constructor for class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
 
-
StateOptions - Class in io.dapr.client.domain
+
StateOptions - Class in io.dapr.client.domain
A class representing the state options for Dapr state API.
-
StateOptions(StateOptions.Consistency, StateOptions.Concurrency) - Constructor for class io.dapr.client.domain.StateOptions
+
StateOptions(StateOptions.Consistency, StateOptions.Concurrency) - Constructor for class io.dapr.client.domain.StateOptions
Represents options for a Dapr state API call.
-
StateOptions.Concurrency - Enum Class in io.dapr.client.domain
+
StateOptions.Concurrency - Enum in io.dapr.client.domain
Options for Concurrency.
-
StateOptions.Consistency - Enum Class in io.dapr.client.domain
+
StateOptions.Consistency - Enum in io.dapr.client.domain
Options for Consistency.
-
StateOptions.StateOptionDurationDeserializer - Class in io.dapr.client.domain
+
StateOptions.StateOptionDurationDeserializer - Class in io.dapr.client.domain
 
-
StateOptions.StateOptionDurationSerializer - Class in io.dapr.client.domain
+
StateOptions.StateOptionDurationSerializer - Class in io.dapr.client.domain
 
-
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SaveStateRequest
+
STATES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
stateSerializer - Variable in class io.dapr.client.DaprClientGrpc
-
-
A utility class for serialize and deserialize state objects.
-
-
STATUS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
STATUS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
+
 
+
STATUS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
STATUS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockResponse
+
STATUS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockResponse
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
STATUSES_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SaveStateRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnlockRequest
 
-
STORENAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
STORE_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
 
-
STRING - Static variable in class io.dapr.utils.TypeRef
+
STORENAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
STRING_ARRAY - Static variable in class io.dapr.utils.TypeRef
+
STRING - Static variable in class io.dapr.utils.TypeRef
 
-
STRING_CHARSET - Static variable in class io.dapr.config.Properties
+
STRING_ARRAY - Static variable in class io.dapr.utils.TypeRef
+
 
+
STRING_CHARSET - Static variable in class io.dapr.config.Properties
Determines which string encoding is used in Dapr's Java SDK.
-
StringProperty - Class in io.dapr.config
+
StringProperty - Class in io.dapr.config
String configuration property.
-
STRONG - Enum constant in enum class io.dapr.client.domain.StateOptions.Consistency
+
STRONG - io.dapr.client.domain.StateOptions.Consistency
 
-
subscribeConfiguration(SubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
-
-
Subscribe to the keys for any change.
-
-
subscribeConfiguration(SubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
-
-
Subscribe to the keys for any change.
-
-
subscribeConfiguration(SubscribeConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
+
subscribeConfiguration(SubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
Subscribe to the keys for any change.
-
subscribeConfiguration(String, String...) - Method in class io.dapr.client.DaprClientGrpc
+
subscribeConfiguration(SubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Subscribe to the keys for any change.
-
subscribeConfiguration(String, String...) - Method in interface io.dapr.client.DaprPreviewClient
+
subscribeConfiguration(SubscribeConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
Subscribe to the keys for any change.
-
subscribeConfiguration(String, List<String>, Map<String, String>) - Method in class io.dapr.client.DaprClientGrpc
+
subscribeConfiguration(String, String...) - Method in interface io.dapr.client.DaprPreviewClient
Subscribe to the keys for any change.
-
subscribeConfiguration(String, List<String>, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
+
subscribeConfiguration(String, List<String>, Map<String, String>) - Method in interface io.dapr.client.DaprPreviewClient
Subscribe to the keys for any change.
-
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream
-
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest, StreamObserver<DaprProtos.SubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest, StreamObserver<DaprProtos.SubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream
-
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest, StreamObserver<DaprProtos.SubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
subscribeConfigurationAlpha1(DaprProtos.SubscribeConfigurationRequest, StreamObserver<DaprProtos.SubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
SubscribeConfiguration gets configuration from configuration store and subscribe the updates event by grpc stream
-
SubscribeConfigurationRequest - Class in io.dapr.client.domain
+
SubscribeConfigurationRequest - Class in io.dapr.client.domain
Request to subscribe to one or more configuration items.
-
SubscribeConfigurationRequest(String, List<String>) - Constructor for class io.dapr.client.domain.SubscribeConfigurationRequest
+
SubscribeConfigurationRequest(String, List<String>) - Constructor for class io.dapr.client.domain.SubscribeConfigurationRequest
Constructor for SubscribeConfigurationRequest.
-
SubscribeConfigurationResponse - Class in io.dapr.client.domain
+
SubscribeConfigurationResponse - Class in io.dapr.client.domain
Domain object for response from subscribeConfiguration API.
-
SubscribeConfigurationResponse(String, Map<String, ConfigurationItem>) - Constructor for class io.dapr.client.domain.SubscribeConfigurationResponse
+
SubscribeConfigurationResponse(String, Map<String, ConfigurationItem>) - Constructor for class io.dapr.client.domain.SubscribeConfigurationResponse
Constructor for SubscribeConfigurationResponse.
-
SUBSCRIPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
SUBSCRIPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
 
+
SUBSCRIPTIONS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
SUCCESS - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
SUCCESS - io.dapr.client.domain.BulkSubscribeAppResponseStatus
+
 
+
SUCCESS - io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
SUCCESS is the default behavior: message is acknowledged and not retried or logged.
-
SUCCESS - Enum constant in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
SUCCESS - io.dapr.v1.DaprProtos.UnlockResponse.Status
SUCCESS = 0;
-
SUCCESS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockResponse
+
SUCCESS_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
SUCCESS_VALUE - Static variable in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
SUCCESS_VALUE - Static variable in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
SUCCESS is the default behavior: message is acknowledged and not retried or logged.
-
SUCCESS_VALUE - Static variable in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
SUCCESS_VALUE - Static variable in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
SUCCESS = 0;
-

T

-
-
TO_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+ + + +

T

+
+
terminateWorkflowAlpha1(DaprProtos.TerminateWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
+
+ Terminate Workflow
+
+
terminateWorkflowAlpha1(DaprProtos.TerminateWorkflowRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
+
+ Terminate Workflow
+
+
terminateWorkflowAlpha1(DaprProtos.TerminateWorkflowRequest, StreamObserver<DaprProtos.TerminateWorkflowResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
+
+ Terminate Workflow
+
+
terminateWorkflowAlpha1(DaprProtos.TerminateWorkflowRequest, StreamObserver<DaprProtos.TerminateWorkflowResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
+
+ Terminate Workflow
+
+
TO_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
 
+
toBuilder() - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.Etag
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.StateItem
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
toBuilder() - Method in class io.dapr.v1.CommonProtos.StateOptions
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
toBuilder() - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
 
-
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
 
-
TOKEN_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
 
-
Topic - Annotation Interface in io.dapr
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
 
-
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TryLockRequest
 
-
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.TryLockResponse
 
-
toString() - Method in class io.dapr.actors.ActorId
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
toBuilder() - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
TOKEN_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.QueryStateResponse
+
 
+
Topic - Annotation Type in io.dapr
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.BulkPublishRequest
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PublishEventRequest
+
 
+
TOPIC_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.PubsubSubscription
+
 
+
toString() - Method in class io.dapr.actors.ActorId
Returns the String representation of this Actor's identifier.
-
toString() - Method in class io.dapr.client.domain.QueryStateItem
+
toString() - Method in class io.dapr.client.domain.QueryStateItem
 
-
toString() - Method in class io.dapr.client.domain.State
+
toString() - Method in class io.dapr.client.domain.State
 
-
toString() - Method in class io.dapr.client.domain.TransactionalStateOperation
+
toString() - Method in class io.dapr.client.domain.TransactionalStateOperation
 
-
TRACE - Enum constant in enum class io.dapr.client.DaprHttp.HttpMethods
+
TRACE - io.dapr.client.DaprHttp.HttpMethods
 
-
TRACE - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
TRACE - io.dapr.v1.CommonProtos.HTTPExtension.Verb
TRACE = 8;
-
TRACE - Static variable in class io.dapr.client.domain.HttpExtension
+
TRACE - Static variable in class io.dapr.client.domain.HttpExtension
Convenience HttpExtension object for the DaprHttp.HttpMethods.TRACE Verb with empty queryString.
-
TRACE_VALUE - Static variable in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
TRACE_VALUE - Static variable in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
TRACE = 8;
-
TransactionalStateOperation<T> - Class in io.dapr.client.domain
+
TransactionalStateOperation<T> - Class in io.dapr.client.domain
Class to represent transactional state operations.
-
TransactionalStateOperation(TransactionalStateOperation.OperationType, State<T>) - Constructor for class io.dapr.client.domain.TransactionalStateOperation
+
TransactionalStateOperation(TransactionalStateOperation.OperationType, State<T>) - Constructor for class io.dapr.client.domain.TransactionalStateOperation
Construct an immutable transactional state operation object.
-
TransactionalStateOperation.OperationType - Enum Class in io.dapr.client.domain
+
TransactionalStateOperation.OperationType - Enum in io.dapr.client.domain
Options for type of operation.
-
TransactionalStateRequest<T> - Class in io.dapr.client.domain
+
TransactionalStateRequest<T> - Class in io.dapr.client.domain
A class to represent request for transactional state.
-
TransactionalStateRequest(List<TransactionalStateOperation<T>>, Map<String, String>) - Constructor for class io.dapr.client.domain.TransactionalStateRequest
+
TransactionalStateRequest(List<TransactionalStateOperation<T>>, Map<String, String>) - Constructor for class io.dapr.client.domain.TransactionalStateRequest
Constructor to create immutable transactional state request object.
-
tryLockAlpha1(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
tryLockAlpha1(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
TryLockAlpha1 tries to get a lock with an expiry.
-
tryLockAlpha1(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
tryLockAlpha1(DaprProtos.TryLockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
TryLockAlpha1 tries to get a lock with an expiry.
-
tryLockAlpha1(DaprProtos.TryLockRequest, StreamObserver<DaprProtos.TryLockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
tryLockAlpha1(DaprProtos.TryLockRequest, StreamObserver<DaprProtos.TryLockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
TryLockAlpha1 tries to get a lock with an expiry.
-
tryLockAlpha1(DaprProtos.TryLockRequest, StreamObserver<DaprProtos.TryLockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
tryLockAlpha1(DaprProtos.TryLockRequest, StreamObserver<DaprProtos.TryLockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
TryLockAlpha1 tries to get a lock with an expiry.
-
TTL_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
TTL_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
 
+
TTL_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
TTL_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
TTL_IN_SECONDS - Static variable in class io.dapr.client.domain.Metadata
 
-
TTL_IN_SECONDS - Static variable in class io.dapr.client.domain.Metadata
+
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
TypeRef<T> - Class in io.dapr.utils
+
TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
 
+
TypeRef<T> - Class in io.dapr.utils
Used to reference a type.
-
TypeRef() - Constructor for class io.dapr.utils.TypeRef
+
TypeRef() - Constructor for class io.dapr.utils.TypeRef
Constructor.
-

U

-
-
unlockAlpha1(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+ + + +

U

+
+
unlockAlpha1(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
UnlockAlpha1 unlocks a lock.
-
unlockAlpha1(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
unlockAlpha1(DaprProtos.UnlockRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
UnlockAlpha1 unlocks a lock.
-
unlockAlpha1(DaprProtos.UnlockRequest, StreamObserver<DaprProtos.UnlockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
unlockAlpha1(DaprProtos.UnlockRequest, StreamObserver<DaprProtos.UnlockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
UnlockAlpha1 unlocks a lock.
-
unlockAlpha1(DaprProtos.UnlockRequest, StreamObserver<DaprProtos.UnlockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
unlockAlpha1(DaprProtos.UnlockRequest, StreamObserver<DaprProtos.UnlockResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
UnlockAlpha1 unlocks a lock.
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
UNRECOGNIZED - io.dapr.v1.CommonProtos.HTTPExtension.Verb
 
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
UNRECOGNIZED - io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
 
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
UNRECOGNIZED - io.dapr.v1.CommonProtos.StateOptions.StateConsistency
 
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
UNRECOGNIZED - io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
 
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
UNRECOGNIZED - io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
 
-
UNRECOGNIZED - Enum constant in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
UNRECOGNIZED - io.dapr.v1.DaprProtos.UnlockResponse.Status
 
-
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Unregister an actor reminder.
-
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Unregister an actor reminder.
-
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Unregister an actor reminder.
-
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Unregister an actor reminder.
-
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
Unregister an actor timer.
-
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
Unregister an actor timer.
-
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
Unregister an actor timer.
-
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest, StreamObserver<Empty>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
Unregister an actor timer.
-
unregisterReminder(String) - Method in class io.dapr.actors.runtime.AbstractActor
+
unregisterReminder(String) - Method in class io.dapr.actors.runtime.AbstractActor
Unregisters a Reminder.
-
unregisterTimer(String) - Method in class io.dapr.actors.runtime.AbstractActor
+
unregisterTimer(String) - Method in class io.dapr.actors.runtime.AbstractActor
Unregisters an Actor timer.
-
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
-
-
Subscribe to the keys for any change.
-
-
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
+
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientGrpc
Subscribe to the keys for any change.
-
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
+
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Subscribe to the keys for any change.
-
unsubscribeConfiguration(String, String) - Method in class io.dapr.client.DaprClientGrpc
+
unsubscribeConfiguration(UnsubscribeConfigurationRequest) - Method in interface io.dapr.client.DaprPreviewClient
Subscribe to the keys for any change.
-
unsubscribeConfiguration(String, String) - Method in interface io.dapr.client.DaprPreviewClient
+
unsubscribeConfiguration(String, String) - Method in interface io.dapr.client.DaprPreviewClient
Subscribe to the keys for any change.
-
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
+
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprBlockingStub
UnSubscribeConfiguration unsubscribe the subscription of configuration
-
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
+
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest) - Method in class io.dapr.v1.DaprGrpc.DaprFutureStub
UnSubscribeConfiguration unsubscribe the subscription of configuration
-
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest, StreamObserver<DaprProtos.UnsubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
+
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest, StreamObserver<DaprProtos.UnsubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprImplBase
UnSubscribeConfiguration unsubscribe the subscription of configuration
-
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest, StreamObserver<DaprProtos.UnsubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
+
unsubscribeConfigurationAlpha1(DaprProtos.UnsubscribeConfigurationRequest, StreamObserver<DaprProtos.UnsubscribeConfigurationResponse>) - Method in class io.dapr.v1.DaprGrpc.DaprStub
UnSubscribeConfiguration unsubscribe the subscription of configuration
-
UnsubscribeConfigurationRequest - Class in io.dapr.client.domain
+
UnsubscribeConfigurationRequest - Class in io.dapr.client.domain
Request to unsubscribe to one or more configuration items using subscription id.
-
UnsubscribeConfigurationRequest(String, String) - Constructor for class io.dapr.client.domain.UnsubscribeConfigurationRequest
+
UnsubscribeConfigurationRequest(String, String) - Constructor for class io.dapr.client.domain.UnsubscribeConfigurationRequest
Constructor for UnsubscribeConfigurationRequest.
-
UnsubscribeConfigurationResponse - Class in io.dapr.client.domain
+
UnsubscribeConfigurationResponse - Class in io.dapr.client.domain
Domain object for unsubscribe response.
-
UnsubscribeConfigurationResponse(boolean, String) - Constructor for class io.dapr.client.domain.UnsubscribeConfigurationResponse
+
UnsubscribeConfigurationResponse(boolean, String) - Constructor for class io.dapr.client.domain.UnsubscribeConfigurationResponse
Constructor for UnsubscribeConfigurationResponse.
-
UPDATE - Enum constant in enum class io.dapr.actors.runtime.ActorStateChangeKind
+
UPDATE - io.dapr.actors.runtime.ActorStateChangeKind
State needs to be updated.
-
UPSERT - Enum constant in enum class io.dapr.client.domain.TransactionalStateOperation.OperationType
+
UPSERT - io.dapr.client.domain.TransactionalStateOperation.OperationType
 
-

V

-
-
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
+ + + +

V

+
+
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.Etag
+
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.Etag
 
-
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
+
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.StateItem
 
-
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
VALUE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
 
-
valueOf(int) - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
valueOf(int) - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
+
Deprecated.
+
+
valueOf(int) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
+
Deprecated.
+
+
valueOf(int) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
+
Deprecated.
+
+
valueOf(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
+
Deprecated.
+
+
valueOf(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
+
+
Deprecated.
+
+
valueOf(int) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
-
Deprecated.
+
Deprecated.
-
valueOf(int) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
valueOf(int) - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Deprecated.
+
Deprecated.
-
valueOf(int) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
Deprecated.
+
Returns the enum constant of this type with the specified name.
-
valueOf(int) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
-
Deprecated.
+
Returns the enum constant of this type with the specified name.
-
valueOf(int) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
-
Deprecated.
+
Returns the enum constant of this type with the specified name.
-
valueOf(int) - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
Deprecated.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
valueOf(String) - Static method in enum io.dapr.actors.runtime.ActorStateChangeKind
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
valueOf(String) - Static method in enum io.dapr.client.DaprApiProtocol
-
Returns the enum constant of this class with the specified name.
+
Deprecated.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
valueOf(String) - Static method in enum io.dapr.client.DaprHttp.HttpMethods
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(Descriptors.EnumValueDescriptor) - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
valueOf(String) - Static method in enum io.dapr.client.domain.BulkSubscribeAppResponseStatus
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.actors.runtime.ActorStateChangeKind
+
valueOf(String) - Static method in enum io.dapr.client.domain.query.Sorting.Order
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.DaprApiProtocol
+
valueOf(String) - Static method in enum io.dapr.client.domain.StateOptions.Concurrency
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.DaprHttp.HttpMethods
+
valueOf(String) - Static method in enum io.dapr.client.domain.StateOptions.Consistency
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.domain.query.Sorting.Order
+
valueOf(String) - Static method in enum io.dapr.client.domain.TransactionalStateOperation.OperationType
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.domain.StateOptions.Concurrency
+
valueOf(String) - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.domain.StateOptions.Consistency
+
valueOf(String) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.client.domain.TransactionalStateOperation.OperationType
+
valueOf(String) - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
valueOf(String) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
valueOf(String) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
valueOf(String) - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
valueOf(String) - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Returns the enum constant of this class with the specified name.
+
Returns the enum constant of this type with the specified name.
-
valueOf(String) - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
values() - Static method in enum io.dapr.actors.runtime.ActorStateChangeKind
-
Returns the enum constant of this class with the specified name.
+
Returns an array containing the constants of this enum type, in +the order they are declared.
-
valueOf(String) - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
values() - Static method in enum io.dapr.client.DaprApiProtocol
-
Returns the enum constant of this class with the specified name.
+
Deprecated.
+
Returns an array containing the constants of this enum type, in +the order they are declared.
-
values() - Static method in enum class io.dapr.actors.runtime.ActorStateChangeKind
+
values() - Static method in enum io.dapr.client.DaprHttp.HttpMethods
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.DaprApiProtocol
+
values() - Static method in enum io.dapr.client.domain.BulkSubscribeAppResponseStatus
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.DaprHttp.HttpMethods
+
values() - Static method in enum io.dapr.client.domain.query.Sorting.Order
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.domain.query.Sorting.Order
+
values() - Static method in enum io.dapr.client.domain.StateOptions.Concurrency
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.domain.StateOptions.Concurrency
+
values() - Static method in enum io.dapr.client.domain.StateOptions.Consistency
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.domain.StateOptions.Consistency
+
values() - Static method in enum io.dapr.client.domain.TransactionalStateOperation.OperationType
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.client.domain.TransactionalStateOperation.OperationType
+
values() - Static method in enum io.dapr.v1.CommonProtos.HTTPExtension.Verb
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.CommonProtos.HTTPExtension.Verb
+
values() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
+
values() - Static method in enum io.dapr.v1.CommonProtos.StateOptions.StateConsistency
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.CommonProtos.StateOptions.StateConsistency
+
values() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
+
values() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
+
values() - Static method in enum io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
values() - Static method in enum class io.dapr.v1.DaprProtos.UnlockResponse.Status
+
values() - Static method in enum io.dapr.v1.DaprProtos.UnlockResponse.Status
-
Returns an array containing the constants of this enum class, in +
Returns an array containing the constants of this enum type, in the order they are declared.
-
VERB_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.HTTPExtension
+
VERB_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
Version - Class in io.dapr.utils
+
 
+
Version() - Constructor for class io.dapr.utils.Version
 
-
VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
+
VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.CommonProtos.ConfigurationItem
 
-
VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
+
VERSION_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
VOID - Static variable in class io.dapr.utils.TypeRef
+
VOID - Static variable in class io.dapr.utils.TypeRef
 
-

W

-
-
waitForSidecar(int) - Method in interface io.dapr.client.DaprClient
+ + + +

W

+
+
waitForSidecar(int) - Method in interface io.dapr.client.DaprClient
Waits for the sidecar, giving up after timeout.
-
waitForSidecar(int) - Method in class io.dapr.client.DaprClientGrpc
+
waitForSidecar(int) - Method in class io.dapr.client.DaprClientGrpc
Waits for the sidecar, giving up after timeout.
-
waitForSidecar(int) - Method in class io.dapr.client.DaprClientHttp
+
waitForSidecar(int) - Method in class io.dapr.client.DaprClientHttp
+
Deprecated.
Waits for the sidecar, giving up after timeout.
-
waitForSocket(String, int, int) - Static method in class io.dapr.utils.NetworkUtils
+
waitForSocket(String, int, int) - Static method in class io.dapr.utils.NetworkUtils
Tries to connect to a socket, retrying every 1 second.
-
withObjectSerializer(DaprObjectSerializer) - Method in class io.dapr.actors.client.ActorProxyBuilder
+
withObjectSerializer(DaprObjectSerializer) - Method in class io.dapr.actors.client.ActorProxyBuilder
Instantiates a new builder for a given Actor type, using DefaultObjectSerializer.
-
withObjectSerializer(DaprObjectSerializer) - Method in class io.dapr.client.DaprClientBuilder
+
withObjectSerializer(DaprObjectSerializer) - Method in class io.dapr.client.DaprClientBuilder
Sets the serializer for objects to be sent and received from Dapr.
-
withStateSerializer(DaprObjectSerializer) - Method in class io.dapr.client.DaprClientBuilder
+
withStateSerializer(DaprObjectSerializer) - Method in class io.dapr.client.DaprClientBuilder
Sets the serializer for objects to be persisted.
-
wrap(Runnable) - Static method in exception io.dapr.exceptions.DaprException
+
WORKFLOW_COMPONENT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
WORKFLOW_COMPONENT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
WORKFLOW_COMPONENT_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
WORKFLOW_NAME_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.StartWorkflowRequest
+
 
+
WORKFLOW_TYPE_FIELD_NUMBER - Static variable in class io.dapr.v1.DaprProtos.GetWorkflowRequest
+
 
+
wrap(Runnable) - Static method in exception io.dapr.exceptions.DaprException
Wraps a runnable with a try-catch to throw DaprException.
-
wrap(Throwable) - Static method in exception io.dapr.exceptions.DaprException
+
wrap(Throwable) - Static method in exception io.dapr.exceptions.DaprException
Wraps an exception into DaprException (if not already DaprException).
-
wrap(Callable<T>) - Static method in exception io.dapr.exceptions.DaprException
+
wrap(Callable<T>) - Static method in exception io.dapr.exceptions.DaprException
Wraps a callable with a try-catch to throw DaprException.
-
wrapFlux(Exception) - Static method in exception io.dapr.exceptions.DaprException
+
wrapFlux(Exception) - Static method in exception io.dapr.exceptions.DaprException
Wraps an exception into DaprException (if not already DaprException).
-
wrapMono(Exception) - Static method in exception io.dapr.exceptions.DaprException
+
wrapMono(Exception) - Static method in exception io.dapr.exceptions.DaprException
Wraps an exception into DaprException (if not already DaprException).
-
writeError(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
+
writeError(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
Writes an error trace log.
-
writeInfo(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
+
writeInfo(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
Writes an information trace log.
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.ConfigurationItem
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.Etag
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.StateItem
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.StateOptions
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.Etag
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.StreamPayload
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.HTTPExtension
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.InvokeRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.InvokeResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.StateItem
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.CommonProtos.StateOptions
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicRule
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ActiveActorsCount
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkPublishRequestEntry
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.BulkStateItem
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.DeleteBulkStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.DeleteStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetActorStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetActorStateResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkSecretResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetBulkStateResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetConfigurationRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetConfigurationResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetMetadataResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetSecretRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetSecretResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetStateResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetWorkflowRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.GetWorkflowResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeActorRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeActorResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeBindingRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeBindingResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.InvokeServiceRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.PublishEventRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.PubsubSubscription
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SecretResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRule
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.PubsubSubscriptionRules
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateItem
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.QueryStateResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisterActorReminderRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisterActorTimerRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RegisteredComponents
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.RenameActorReminderRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SaveStateRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SecretResponse
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SetMetadataRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.StartWorkflowRequest
 
-
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
 
-
writeWarning(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TerminateWorkflowResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TransactionalActorStateOperation
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TransactionalStateOperation
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TryLockRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.TryLockResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnlockRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnlockResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
+
 
+
writeTo(CodedOutputStream) - Method in class io.dapr.v1.DaprProtos.WorkflowReference
+
 
+
writeWarning(String, String, String, Object...) - Method in class io.dapr.actors.ActorTrace
Writes an warning trace log.
-A B C D E F G H I J K L M N O P Q R S T U V W 
All Classes|All Packages|Constant Field Values|Deprecated API|Serialized Form +A B C D E F G H I K L M N O P Q R S T U V W 
All Classes All Packages +
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/index.html b/docs/index.html index 1641dd861..bd3b93ecb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,34 +2,51 @@ - -Overview (dapr-sdk-parent 1.7.1 API) - + +Overview (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ + + + + -
-

dapr-sdk-parent 1.7.1 API

-
-
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/io/dapr/Rule.html b/docs/io/dapr/Rule.html index 8a9b09c1e..1ba20102b 100644 --- a/docs/io/dapr/Rule.html +++ b/docs/io/dapr/Rule.html @@ -2,36 +2,53 @@ - -Rule (dapr-sdk-parent 1.7.1 API) - + +Rule (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ +
+ + + -
-
+
-
Package io.dapr
-

Annotation Interface Rule

+
Package io.dapr
+

Annotation Type Rule

-
+
+
+
-
- +
+
+
    +
  • + +
    +
      +
    • + + +

      Required Element Summary

      + + + + + + + + + + + + + + + + + +
      Required Elements 
      Modifier and TypeRequired ElementDescription
      Stringmatch
      The Common Expression Language (CEL) expression to use to match the incoming cloud event.
      - -
      int
      - -
      +
      intpriority
      Priority of the rule used for ordering.
      - - - +
    -
    -
      - -
    • -
      -

      Element Details

      -
        -
      • -
        -

        match

        -
        String match
        +
      • +
      +
+
+
    +
  • + +
    +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        match

        +
        String match
        The Common Expression Language (CEL) expression to use to match the incoming cloud event. Examples.
        -
        -
        Returns:
        +
        +
        Returns:
        the CEL expression.
        -
  • -
  • -
    -

    priority

    -
    int priority
    +
+ + + +
+
    +
  • + + +
      +
    • +

      priority

      +
      int priority
      Priority of the rule used for ordering. Lowest numbers have higher priority.
      -
      -
      Returns:
      +
      +
      Returns:
      the rule's priority.
      -
- - + + +
+ +
-
- -
+ +

Copyright © 2023. All rights reserved.

+ diff --git a/docs/io/dapr/Topic.html b/docs/io/dapr/Topic.html index 4f91e495c..48ec5f97c 100644 --- a/docs/io/dapr/Topic.html +++ b/docs/io/dapr/Topic.html @@ -2,36 +2,53 @@ - -Topic (dapr-sdk-parent 1.7.1 API) - + +Topic (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
-
+ + + + + -
-
+
-
Package io.dapr
-

Annotation Interface Topic

+
Package io.dapr
+

Annotation Type Topic

-
+
+
+
-
-
- - -
+
+
    +
  • + +
    +
      +
    • + + +

      Required Element Summary

      + + + + + + + + + + + + + + + + + +
      Required Elements 
      Modifier and TypeRequired ElementDescription
      Stringname +
      Name of topic to be subscribed to.
      +
      StringpubsubName
      Name of the pubsub bus to be subscribed to.
      - - - +
    • - -
    • -
      -

      Optional Element Summary

      -
      Optional Elements
      -
      -
      Modifier and Type
      -
      Optional Element
      -
      Description
      - - -
      +
    +
    + +
    +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional ElementDescription
      Stringmetadata
      Metadata in the form of a json object.
      - - - -
      +
      Rulerule
      The rules used to match the incoming cloud event.
      - - - +
    -
    -
      - -
    • -
      -

      Element Details

      - +
+
+
    +
  • + +
    +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        name

        +
        String name
        Name of topic to be subscribed to.
        -
        -
        Returns:
        +
        +
        Returns:
        Topic's name.
        -
  • -
  • -
    -

    pubsubName

    -
    String pubsubName
    +
+ + + +
+
    +
  • + + +
      +
    • +

      pubsubName

      +
      String pubsubName
      Name of the pubsub bus to be subscribed to.
      -
      -
      Returns:
      +
      +
      Returns:
      pubsub bus's name.
      -
- - -
  • -
    -
      -
    • -
      -

      rule

      -
      Rule rule
      +
    +
    + +
    +
      +
    • + + +
        +
      • +

        rule

        +
        Rule rule
        The rules used to match the incoming cloud event.
        -
        -
        Returns:
        +
        +
        Returns:
        the CEL expression.
        -
        +
        Default:
        @io.dapr.Rule(match="", priority=0)
        -
  • -
  • -
    -

    metadata

    -
    String metadata
    + +
  • + + +
    +
      +
    • + + +
        +
      • +

        metadata

        +
        String metadata
        Metadata in the form of a json object. { "mykey": "myvalue" }
        -
        -
        Returns:
        +
        +
        Returns:
        metadata object
        -
        +
        Default:
        "{}"
        -
    - - + + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/ActorId.html b/docs/io/dapr/actors/ActorId.html index 1a06d2765..3f75f0028 100644 --- a/docs/io/dapr/actors/ActorId.html +++ b/docs/io/dapr/actors/ActorId.html @@ -2,40 +2,59 @@ - -ActorId (dapr-sdk-parent 1.7.1 API) - + +ActorId (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorId

    -
    -
    java.lang.Object -
    io.dapr.actors.ActorId
    + +

    Class ActorId

    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      -
      ActorId​(String id)
      -
      +
      +
        +
      • + + +

        Constructor Summary

        + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        ActorId​(String id)
        Initializes a new instance of the ActorId class with the id passed in.
        - - - +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      int
      -
      compareTo​(ActorId other)
      -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Constructor Details

        -
          -
        • -
          -

          ActorId

          -
          public ActorId(String id)
          +
          +
            +
          • + + +

            Constructor Detail

            + + + +
              +
            • +

              ActorId

              +
              public ActorId​(String id)
              Initializes a new instance of the ActorId class with the id passed in.
              -
              -
              Parameters:
              +
              +
              Parameters:
              id - Value for actor id
              -
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        toString

        -
        public String toString()
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            toString

            +
            public String toString()
            Returns the String representation of this Actor's identifier.
            -
            -
            Overrides:
            -
            toString in class Object
            -
            Returns:
            +
            +
            Overrides:
            +
            toString in class Object
            +
            Returns:
            The String representation of this ActorId
            -
      • -
      • -
        -

        compareTo

        -
        public int compareTo(ActorId other)
        +
      + + + +
        +
      • +

        compareTo

        +
        public int compareTo​(ActorId other)
        Compares this instance with a specified {link #ActorId} object and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified actorId. The comparison is done based on the id if both the instances.
        -
        -
        Specified by:
        -
        compareTo in interface Comparable<ActorId>
        -
        Parameters:
        +
        +
        Specified by:
        +
        compareTo in interface Comparable<ActorId>
        +
        Parameters:
        other - The actorId to compare with this instance.
        -
        Returns:
        +
        Returns:
        A 32-bit signed integer that indicates whether this instance precedes, follows, or appears in the same position in the sort order as the other parameter.
        -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      Calculates the hash code for this ActorId.
      -
      -
      Overrides:
      -
      hashCode in class Object
      -
      Returns:
      +
      +
      Overrides:
      +
      hashCode in class Object
      +
      Returns:
      The hash code of this ActorId.
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      Checks if this instance is equals to the other instance.
      -
      -
      Overrides:
      -
      equals in class Object
      -
      Returns:
      +
      +
      Overrides:
      +
      equals in class Object
      +
      Returns:
      true if the 2 ActorId's are equal.
      -
    • -
    • -
      -

      createRandom

      -
      public static ActorId createRandom()
      +
    + + + +
      +
    • +

      createRandom

      +
      public static ActorId createRandom()
      Creates a new ActorId with a random id.
      -
      -
      Returns:
      +
      +
      Returns:
      A new ActorId with a random id.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/ActorMethod.html b/docs/io/dapr/actors/ActorMethod.html index 47b44651d..24da874f0 100644 --- a/docs/io/dapr/actors/ActorMethod.html +++ b/docs/io/dapr/actors/ActorMethod.html @@ -2,36 +2,53 @@ - -ActorMethod (dapr-sdk-parent 1.7.1 API) - + +ActorMethod (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Annotation Interface ActorMethod

    + +

    Annotation Type ActorMethod

    -
    +
    +
    +
    -
    -
    - - -
    +
    +
      +
    • + +
      +
        +
      • + + +

        Optional Element Summary

        + + + + + + + + + + + + + + + + + +
        Optional Elements 
        Modifier and TypeOptional ElementDescription
        Stringname +
        Actor's method name.
        +
        Classreturns
        Actor's method return type.
        - - - +
      -
      -
        - -
      • -
        -

        Element Details

        -
          -
        • -
          -

          returns

          -
          Class returns
          +
        • +
        +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Element Detail

        + + + +
          +
        • +

          returns

          +
          Class returns
          Actor's method return type. This is required when result object is within a Mono response.
          -
          -
          Returns:
          +
          +
          Returns:
          Actor's method return type.
          -
          +
          Default:
          io.dapr.actors.Undefined.class
          -
    • -
    • -
      -

      name

      -
      String name
      +
    + + + +
    +
      +
    • + + +
        +
      • +

        name

        +
        String name
        Actor's method name. This is optional and will override the method's default name for actor invocation.
        -
        -
        Returns:
        +
        +
        Returns:
        Actor's method name.
        -
        +
        Default:
        ""
        -
    - - + + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/ActorTrace.html b/docs/io/dapr/actors/ActorTrace.html index 2264fb12d..354ff9b7a 100644 --- a/docs/io/dapr/actors/ActorTrace.html +++ b/docs/io/dapr/actors/ActorTrace.html @@ -2,40 +2,59 @@ - -ActorTrace (dapr-sdk-parent 1.7.1 API) - + +ActorTrace (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorTrace

    + +

    Class ActorTrace

    -
    java.lang.Object -
    io.dapr.actors.ActorTrace
    -
    -
    +
    + +
    +
      +

    • -
      public final class ActorTrace -extends Object
      +
      public final class ActorTrace
      +extends Object
      Class to emit trace log messages.
      -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
       
      +
    • +
    - +
    + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/ActorType.html b/docs/io/dapr/actors/ActorType.html index 771506954..78e739959 100644 --- a/docs/io/dapr/actors/ActorType.html +++ b/docs/io/dapr/actors/ActorType.html @@ -2,36 +2,53 @@ - -ActorType (dapr-sdk-parent 1.7.1 API) - + +ActorType (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Annotation Interface ActorType

    + +

    Annotation Type ActorType

    -
    +
    +
    +
    -
    -
      - -
    • -
      -

      Required Element Summary

      -
      Required Elements
      -
      -
      Modifier and Type
      -
      Required Element
      -
      Description
      - - -
      -
      Overrides Actor's name.
      -
      +
    • +
    - +
    +
      +
    • + +
      +
        +
      • + + +

        Required Element Summary

        + + + + + + + + + + + + +
        Required Elements 
        Modifier and TypeRequired ElementDescription
        Stringname +
        Overrides Actor's name.
        +
      -
      -
        - -
      • -
        -

        Element Details

        - +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Element Detail

        + + + +
          +
        • +

          name

          +
          String name
          Overrides Actor's name.
          -
          -
          Returns:
          +
          +
          Returns:
          Actor's name.
          -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/ActorUtils.html b/docs/io/dapr/actors/ActorUtils.html index 6086d708d..d4e424db5 100644 --- a/docs/io/dapr/actors/ActorUtils.html +++ b/docs/io/dapr/actors/ActorUtils.html @@ -2,40 +2,59 @@ - -ActorUtils (dapr-sdk-parent 1.7.1 API) - + +ActorUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorUtils

    -
    -
    java.lang.Object -
    io.dapr.actors.ActorUtils
    + +

    Class ActorUtils

    -
    -
    -
    public final class ActorUtils -extends Object
    -
    -
    -
      - +
      +
        +
      • java.lang.Object
      • -
        -

        Constructor Summary

        -
        Constructors
        -
        -
        Constructor
        -
        Description
        - -
         
        +
          +
        • io.dapr.actors.ActorUtils
        • +
        +
      • +
      +
      +
        +
      • +
        +
        public final class ActorUtils
        +extends Object
        +
      • +
      -
    +
    + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/class-use/ActorId.html b/docs/io/dapr/actors/class-use/ActorId.html index 6b0e9937c..ccc31ce0c 100644 --- a/docs/io/dapr/actors/class-use/ActorId.html +++ b/docs/io/dapr/actors/class-use/ActorId.html @@ -2,176 +2,321 @@ - -Uses of Class io.dapr.actors.ActorId (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.ActorId (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.ActorId

    -
    -
    Packages that use ActorId
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.actors.ActorId

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/class-use/ActorMethod.html b/docs/io/dapr/actors/class-use/ActorMethod.html index 1d1d83e87..4e8c04f7a 100644 --- a/docs/io/dapr/actors/class-use/ActorMethod.html +++ b/docs/io/dapr/actors/class-use/ActorMethod.html @@ -2,65 +2,149 @@ - -Uses of Annotation Interface io.dapr.actors.ActorMethod (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.ActorMethod (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Annotation Interface
    io.dapr.actors.ActorMethod

    +

    Uses of Class
    io.dapr.actors.ActorMethod

    -No usage of io.dapr.actors.ActorMethod
    +
    No usage of io.dapr.actors.ActorMethod
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/class-use/ActorTrace.html b/docs/io/dapr/actors/class-use/ActorTrace.html index 8f18adf4d..48c8ff3b9 100644 --- a/docs/io/dapr/actors/class-use/ActorTrace.html +++ b/docs/io/dapr/actors/class-use/ActorTrace.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.actors.ActorTrace (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.ActorTrace (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.actors.ActorTrace

    +

    Uses of Class
    io.dapr.actors.ActorTrace

    -No usage of io.dapr.actors.ActorTrace
    +
    No usage of io.dapr.actors.ActorTrace
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/class-use/ActorType.html b/docs/io/dapr/actors/class-use/ActorType.html index 1d7e26dec..c6196c9dc 100644 --- a/docs/io/dapr/actors/class-use/ActorType.html +++ b/docs/io/dapr/actors/class-use/ActorType.html @@ -2,65 +2,149 @@ - -Uses of Annotation Interface io.dapr.actors.ActorType (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.ActorType (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Annotation Interface
    io.dapr.actors.ActorType

    +

    Uses of Class
    io.dapr.actors.ActorType

    -No usage of io.dapr.actors.ActorType
    +
    No usage of io.dapr.actors.ActorType
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/class-use/ActorUtils.html b/docs/io/dapr/actors/class-use/ActorUtils.html index 4bed02fef..cd6b18355 100644 --- a/docs/io/dapr/actors/class-use/ActorUtils.html +++ b/docs/io/dapr/actors/class-use/ActorUtils.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.actors.ActorUtils (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.ActorUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.actors.ActorUtils

    +

    Uses of Class
    io.dapr.actors.ActorUtils

    -No usage of io.dapr.actors.ActorUtils
    +
    No usage of io.dapr.actors.ActorUtils
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/ActorClient.html b/docs/io/dapr/actors/client/ActorClient.html index 64fc84717..e57a74a87 100644 --- a/docs/io/dapr/actors/client/ActorClient.html +++ b/docs/io/dapr/actors/client/ActorClient.html @@ -2,40 +2,59 @@ - -ActorClient (dapr-sdk-parent 1.7.1 API) - + +ActorClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -
    +
    - -

    Class ActorClient

    -
    -
    java.lang.Object -
    io.dapr.actors.client.ActorClient
    + +

    Class ActorClient

    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/ActorProxy.html b/docs/io/dapr/actors/client/ActorProxy.html index 48ecf2095..08506bca3 100644 --- a/docs/io/dapr/actors/client/ActorProxy.html +++ b/docs/io/dapr/actors/client/ActorProxy.html @@ -2,40 +2,59 @@ - -ActorProxy (dapr-sdk-parent 1.7.1 API) - + +ActorProxy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Interface ActorProxy

    + +

    Interface ActorProxy

    -
    +
    +
    +
      +

    • -
      public interface ActorProxy
      +
      public interface ActorProxy
      Proxy to communicate to a given Actor instance in Dapr.
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorId

          -
          ActorId getActorId()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorId

              +
              ActorId getActorId()
              Returns the ActorId associated with the proxy object.
              -
              -
              Returns:
              +
              +
              Returns:
              An ActorId object.
              -
        • -
        • -
          -

          getActorType

          -
          String getActorType()
          +
        + + + +
          +
        • +

          getActorType

          +
          String getActorType()
          Returns actor implementation type of the actor associated with the proxy object.
          -
          -
          Returns:
          +
          +
          Returns:
          Actor's type name.
          -
      • -
      • -
        -

        invokeMethod

        -
        <T> reactor.core.publisher.Mono<T> invokeMethod(String methodName, - TypeRef<T> type)
        +
      + + + +
        +
      • +

        invokeMethod

        +
        <T> reactor.core.publisher.Mono<T> invokeMethod​(String methodName,
        +                                                TypeRef<T> type)
        Invokes an Actor method on Dapr.
        -
        -
        Type Parameters:
        +
        +
        Type Parameters:
        T - The type to be returned.
        -
        Parameters:
        +
        Parameters:
        methodName - Method name to invoke.
        type - The type of the return class.
        -
        Returns:
        +
        Returns:
        Asynchronous result with the Actor's response.
        -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String methodName, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String methodName,
      +                                                Class<T> clazz)
      Invokes an Actor method on Dapr.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type to be returned.
      -
      Parameters:
      +
      Parameters:
      methodName - Method name to invoke.
      clazz - The type of the return class.
      -
      Returns:
      +
      Returns:
      Asynchronous result with the Actor's response.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String methodName, - Object data, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String methodName,
      +                                                Object data,
      +                                                TypeRef<T> type)
      Invokes an Actor method on Dapr.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type to be returned.
      -
      Parameters:
      +
      Parameters:
      methodName - Method name to invoke.
      data - Object with the data.
      type - The type of the return class.
      -
      Returns:
      +
      Returns:
      Asynchronous result with the Actor's response.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String methodName, - Object data, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String methodName,
      +                                                Object data,
      +                                                Class<T> clazz)
      Invokes an Actor method on Dapr.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type to be returned.
      -
      Parameters:
      +
      Parameters:
      methodName - Method name to invoke.
      data - Object with the data.
      clazz - The type of the return class.
      -
      Returns:
      +
      Returns:
      Asynchronous result with the Actor's response.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<Void> invokeMethod(String methodName)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<Void> invokeMethod​(String methodName)
      Invokes an Actor method on Dapr.
      -
      -
      Parameters:
      +
      +
      Parameters:
      methodName - Method name to invoke.
      -
      Returns:
      +
      Returns:
      Asynchronous result with the Actor's response.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<Void> invokeMethod(String methodName, - Object data)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<Void> invokeMethod​(String methodName,
      +                                               Object data)
      Invokes an Actor method on Dapr.
      -
      -
      Parameters:
      +
      +
      Parameters:
      methodName - Method name to invoke.
      data - Object with the data.
      -
      Returns:
      +
      Returns:
      Asynchronous result with the Actor's response.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/ActorProxyBuilder.html b/docs/io/dapr/actors/client/ActorProxyBuilder.html index cdceea843..93138a42f 100644 --- a/docs/io/dapr/actors/client/ActorProxyBuilder.html +++ b/docs/io/dapr/actors/client/ActorProxyBuilder.html @@ -2,40 +2,59 @@ - -ActorProxyBuilder (dapr-sdk-parent 1.7.1 API) - + +ActorProxyBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorProxyBuilder<T>

    + +

    Class ActorProxyBuilder<T>

    -
    java.lang.Object -
    io.dapr.actors.client.ActorProxyBuilder<T>
    -
    -
    +
    + +
    +
      +

    • -
      public class ActorProxyBuilder<T> -extends Object
      +
      public class ActorProxyBuilder<T>
      +extends Object
      Builder to generate an ActorProxy instance. Builder can be reused for multiple instances.
      -
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    - + + + +
      +
    • +

      build

      +
      public T build​(ActorId actorId)
      Instantiates a new ActorProxy.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorId - Actor's identifier.
      -
      Returns:
      +
      Returns:
      New instance of ActorProxy.
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/class-use/ActorClient.html b/docs/io/dapr/actors/client/class-use/ActorClient.html index 103622214..bd22c0065 100644 --- a/docs/io/dapr/actors/client/class-use/ActorClient.html +++ b/docs/io/dapr/actors/client/class-use/ActorClient.html @@ -2,100 +2,202 @@ - -Uses of Class io.dapr.actors.client.ActorClient (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.client.ActorClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.client.ActorClient

    -
    -
    Packages that use ActorClient
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.client.ActorClient

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/class-use/ActorProxy.html b/docs/io/dapr/actors/client/class-use/ActorProxy.html index fff7cd5c3..22269f181 100644 --- a/docs/io/dapr/actors/client/class-use/ActorProxy.html +++ b/docs/io/dapr/actors/client/class-use/ActorProxy.html @@ -2,65 +2,149 @@ - -Uses of Interface io.dapr.actors.client.ActorProxy (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.actors.client.ActorProxy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.actors.client.ActorProxy

    +

    Uses of Interface
    io.dapr.actors.client.ActorProxy

    -No usage of io.dapr.actors.client.ActorProxy
    +
    No usage of io.dapr.actors.client.ActorProxy
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/class-use/ActorProxyBuilder.html b/docs/io/dapr/actors/client/class-use/ActorProxyBuilder.html index c040e5f47..d7927bf28 100644 --- a/docs/io/dapr/actors/client/class-use/ActorProxyBuilder.html +++ b/docs/io/dapr/actors/client/class-use/ActorProxyBuilder.html @@ -2,92 +2,195 @@ - -Uses of Class io.dapr.actors.client.ActorProxyBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.client.ActorProxyBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.actors.client.ActorProxyBuilder

    -
    -
    Packages that use ActorProxyBuilder
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.client.ActorProxyBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/package-summary.html b/docs/io/dapr/actors/client/package-summary.html index 61251ff83..848067c45 100644 --- a/docs/io/dapr/actors/client/package-summary.html +++ b/docs/io/dapr/actors/client/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.actors.client (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors.client (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.actors.client

    -
    -
    package io.dapr.actors.client
    -
    -
      -
    • -
      Interface Summary
      -
      -
      Interface
      -
      Description
      - -
      +
      +
        +
      • + + + + + + + + + + + + +
        Interface Summary 
        InterfaceDescription
        ActorProxy
        Proxy to communicate to a given Actor instance in Dapr.
        - - +
      • -
      • -
        Class Summary
        -
        -
        Class
        -
        Description
        - -
        +
      • + + + + + + + + + + + + + + + + +
        Class Summary 
        ClassDescription
        ActorClient
        Holds a client for Dapr sidecar communication.
        - - -
        +
        ActorProxyBuilder<T>
        Builder to generate an ActorProxy instance.
        - - +
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/package-tree.html b/docs/io/dapr/actors/client/package-tree.html index a243396f7..0f366288a 100644 --- a/docs/io/dapr/actors/client/package-tree.html +++ b/docs/io/dapr/actors/client/package-tree.html @@ -2,86 +2,171 @@ - -io.dapr.actors.client Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors.client Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.actors.client

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    +

    Interface Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/client/package-use.html b/docs/io/dapr/actors/client/package-use.html index bee2fc003..fbe96163b 100644 --- a/docs/io/dapr/actors/client/package-use.html +++ b/docs/io/dapr/actors/client/package-use.html @@ -2,93 +2,192 @@ - -Uses of Package io.dapr.actors.client (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.actors.client (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.actors.client

    -
    Packages that use io.dapr.actors.client
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/package-summary.html b/docs/io/dapr/actors/package-summary.html index 02b2ae40b..94fd6cc16 100644 --- a/docs/io/dapr/actors/package-summary.html +++ b/docs/io/dapr/actors/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.actors (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.actors

    -
    -
    package io.dapr.actors
    -
    -
      -
    • -
      Class Summary
      -
      -
      Class
      -
      Description
      - -
      +
      +
        +
      • + + + + + + + + + + + + + + + + + + + + +
        Class Summary 
        ClassDescription
        ActorId
        The ActorId represents the identity of an actor within an actor service.
        - - -
        +
        ActorTrace
        Class to emit trace log messages.
        - - -
         
        - +
        ActorUtils 
      • -
      • -
        Annotation Interfaces Summary
        -
        -
        Annotation Interface
        -
        Description
        - -
         
        - -
        +
      • + + + + + + + + + + + + + + + + +
        Annotation Types Summary 
        Annotation TypeDescription
        ActorMethod 
        ActorType
        Annotation to define Actor class.
        - - +
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/package-tree.html b/docs/io/dapr/actors/package-tree.html index b383e3237..036c8fdd1 100644 --- a/docs/io/dapr/actors/package-tree.html +++ b/docs/io/dapr/actors/package-tree.html @@ -2,88 +2,173 @@ - -io.dapr.actors Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.actors

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    -

    Annotation Interface Hierarchy

    +
    +

    Annotation Type Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/package-use.html b/docs/io/dapr/actors/package-use.html index c29e798e7..7cb89cda0 100644 --- a/docs/io/dapr/actors/package-use.html +++ b/docs/io/dapr/actors/package-use.html @@ -2,119 +2,232 @@ - -Uses of Package io.dapr.actors (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.actors (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.actors

    -
    Packages that use io.dapr.actors
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/AbstractActor.html b/docs/io/dapr/actors/runtime/AbstractActor.html index bee617932..733a86eec 100644 --- a/docs/io/dapr/actors/runtime/AbstractActor.html +++ b/docs/io/dapr/actors/runtime/AbstractActor.html @@ -2,40 +2,59 @@ - -AbstractActor (dapr-sdk-parent 1.7.1 API) - + +AbstractActor (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class AbstractActor

    -
    -
    java.lang.Object -
    io.dapr.actors.runtime.AbstractActor
    + +

    Class AbstractActor

    -
    +
    + +
    +
      +

    • -
      public abstract class AbstractActor -extends Object
      +
      public abstract class AbstractActor
      +extends Object
      Represents the base class for actors. The base type for actors, that provides the common functionality for actors. The state is preserved across actor garbage collections and fail-overs.
      -
    -
    -
      + +
    +
    +
    + + + + + + +
      +
    • +

      registerReminder

      +
      protected <T> reactor.core.publisher.Mono<Void> registerReminder​(String reminderName,
      +                                                                 T state,
      +                                                                 Duration dueTime,
      +                                                                 Duration period)
      Registers a reminder for this Actor.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Type of the state object.
      -
      Parameters:
      +
      Parameters:
      reminderName - Name of the reminder.
      state - State to be send along with reminder triggers.
      dueTime - Due time for the first trigger.
      period - Frequency for the triggers.
      -
      Returns:
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      registerActorTimer

      -
      protected <T> reactor.core.publisher.Mono<String> registerActorTimer(String timerName, - String callback, - T state, - Duration dueTime, - Duration period)
      +
    + + + + + +
      +
    • +

      registerActorTimer

      +
      protected <T> reactor.core.publisher.Mono<String> registerActorTimer​(String timerName,
      +                                                                     String callback,
      +                                                                     T state,
      +                                                                     Duration dueTime,
      +                                                                     Duration period)
      Registers a Timer for the actor. A timer name is autogenerated by the runtime to keep track of it.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Type for the state to be passed in to timer.
      -
      Parameters:
      +
      Parameters:
      timerName - Name of the timer, unique per Actor (auto-generated if null).
      callback - Name of the method to be called.
      state - State to be passed it to the method when timer triggers.
      @@ -282,108 +398,187 @@

      Returns:
      Asynchronous result with timer's name.

      -
    • -
    • -
      -

      unregisterTimer

      -
      protected reactor.core.publisher.Mono<Void> unregisterTimer(String timerName)
      +
    + + + +
      +
    • +

      unregisterTimer

      +
      protected reactor.core.publisher.Mono<Void> unregisterTimer​(String timerName)
      Unregisters an Actor timer.
      -
      -
      Parameters:
      +
      +
      Parameters:
      timerName - Name of Timer to be unregistered.
      -
      Returns:
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      unregisterReminder

      -
      protected reactor.core.publisher.Mono<Void> unregisterReminder(String reminderName)
      +
    + + + +
      +
    • +

      unregisterReminder

      +
      protected reactor.core.publisher.Mono<Void> unregisterReminder​(String reminderName)
      Unregisters a Reminder.
      -
      -
      Parameters:
      +
      +
      Parameters:
      reminderName - Name of Reminder to be unregistered.
      -
      Returns:
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      onActivate

      -
      protected reactor.core.publisher.Mono<Void> onActivate()
      +
    + + + +
      +
    • +

      onActivate

      +
      protected reactor.core.publisher.Mono<Void> onActivate()
      Callback function invoked after an Actor has been activated.
      -
      -
      Returns:
      +
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      onDeactivate

      -
      protected reactor.core.publisher.Mono<Void> onDeactivate()
      +
    + + + +
      +
    • +

      onDeactivate

      +
      protected reactor.core.publisher.Mono<Void> onDeactivate()
      Callback function invoked after an Actor has been deactivated.
      -
      -
      Returns:
      +
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      onPreActorMethod

      -
      protected reactor.core.publisher.Mono<Void> onPreActorMethod(ActorMethodContext actorMethodContext)
      +
    + + + +
      +
    • +

      onPreActorMethod

      +
      protected reactor.core.publisher.Mono<Void> onPreActorMethod​(ActorMethodContext actorMethodContext)
      Callback function invoked before method is invoked.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorMethodContext - Method context.
      -
      Returns:
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      onPostActorMethod

      -
      protected reactor.core.publisher.Mono<Void> onPostActorMethod(ActorMethodContext actorMethodContext)
      +
    + + + +
      +
    • +

      onPostActorMethod

      +
      protected reactor.core.publisher.Mono<Void> onPostActorMethod​(ActorMethodContext actorMethodContext)
      Callback function invoked after method is invoked.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorMethodContext - Method context.
      -
      Returns:
      +
      Returns:
      Asynchronous void response.
      -
    • -
    • -
      -

      saveState

      -
      protected reactor.core.publisher.Mono<Void> saveState()
      +
    + + + +
      +
    • +

      saveState

      +
      protected reactor.core.publisher.Mono<Void> saveState()
      Saves the state of this Actor.
      -
      -
      Returns:
      +
      +
      Returns:
      Asynchronous void response.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorFactory.html b/docs/io/dapr/actors/runtime/ActorFactory.html index 99dbc8d68..cb795726e 100644 --- a/docs/io/dapr/actors/runtime/ActorFactory.html +++ b/docs/io/dapr/actors/runtime/ActorFactory.html @@ -2,40 +2,59 @@ - -ActorFactory (dapr-sdk-parent 1.7.1 API) - + +ActorFactory (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Interface ActorFactory<T extends AbstractActor>

    + +

    Interface ActorFactory<T extends AbstractActor>

    -
    -
    -
    Type Parameters:
    +
    +
    +
      +
    • +
      +
      Type Parameters:
      T - Actor Type to be created.
      -
      +
      Functional Interface:
      This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

      -
      @FunctionalInterface -public interface ActorFactory<T extends AbstractActor>
      +
      @FunctionalInterface
      +public interface ActorFactory<T extends AbstractActor>
      Creates an actor of a given type.
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - -
      createActor​(ActorRuntimeContext<T> actorRuntimeContext, - ActorId actorId)
      -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          createActor

          -
          T createActor(ActorRuntimeContext<T> actorRuntimeContext, - ActorId actorId)
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              createActor

              +
              T createActor​(ActorRuntimeContext<T> actorRuntimeContext,
              +              ActorId actorId)
              Creates an Actor.
              -
              -
              Parameters:
              +
              +
              Parameters:
              actorRuntimeContext - Actor type's context in the runtime.
              actorId - Actor Id.
              -
              Returns:
              +
              Returns:
              Actor or null it failed.
              -
        -
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorMethodContext.html b/docs/io/dapr/actors/runtime/ActorMethodContext.html index a85afd925..b8b4574d3 100644 --- a/docs/io/dapr/actors/runtime/ActorMethodContext.html +++ b/docs/io/dapr/actors/runtime/ActorMethodContext.html @@ -2,40 +2,59 @@ - -ActorMethodContext (dapr-sdk-parent 1.7.1 API) - + +ActorMethodContext (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorMethodContext

    + +

    Class ActorMethodContext

    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorMethodContext
    -
    -
    +
    + +
    +
      +

    • -
      public class ActorMethodContext -extends Object
      +
      public class ActorMethodContext
      +extends Object
      Contains information about the method that is invoked by actor runtime.
      -
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorObjectSerializer.html b/docs/io/dapr/actors/runtime/ActorObjectSerializer.html index f22266ecb..7c9d8954c 100644 --- a/docs/io/dapr/actors/runtime/ActorObjectSerializer.html +++ b/docs/io/dapr/actors/runtime/ActorObjectSerializer.html @@ -2,40 +2,59 @@ - -ActorObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +ActorObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorObjectSerializer

    -
    -
    java.lang.Object -
    io.dapr.client.ObjectSerializer -
    io.dapr.actors.runtime.ActorObjectSerializer
    -
    + +

    Class ActorObjectSerializer

    -
    +
    + +
    +
      +

    • -
      public class ActorObjectSerializer -extends ObjectSerializer
      +
      public class ActorObjectSerializer
      +extends ObjectSerializer
      Serializes and deserializes internal objects.
      -
    -
    -
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorRuntime.html b/docs/io/dapr/actors/runtime/ActorRuntime.html index b1a23e1d4..02a0715a5 100644 --- a/docs/io/dapr/actors/runtime/ActorRuntime.html +++ b/docs/io/dapr/actors/runtime/ActorRuntime.html @@ -2,40 +2,59 @@ - -ActorRuntime (dapr-sdk-parent 1.7.1 API) - + +ActorRuntime (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorRuntime

    + +

    Class ActorRuntime

    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorRuntime
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      registerActor

      +
      public <T extends AbstractActor> void registerActor​(Class<T> clazz)
      Registers an actor with the runtime, using DefaultObjectSerializer and DefaultActorFactory. DefaultObjectSerializer is not recommended for production scenarios.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Actor class type.
      -
      Parameters:
      +
      Parameters:
      clazz - The type of actor.
      -
    • -
    • -
      -

      registerActor

      -
      public <T extends AbstractActor> void registerActor(Class<T> clazz, - ActorFactory<T> actorFactory)
      +
    + + + + + + + +
      +
    • +

      registerActor

      +
      public <T extends AbstractActor> void registerActor​(Class<T> clazz,
      +                                                    DaprObjectSerializer objectSerializer,
      +                                                    DaprObjectSerializer stateSerializer)
      Registers an actor with the runtime.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Actor class type.
      -
      Parameters:
      +
      Parameters:
      clazz - The type of actor.
      objectSerializer - Serializer for Actor's request and response objects.
      stateSerializer - Serializer for Actor's state objects.
      -
    • -
    • -
      -

      registerActor

      -
      public <T extends AbstractActor> void registerActor(Class<T> clazz, - ActorFactory<T> actorFactory, - DaprObjectSerializer objectSerializer, - DaprObjectSerializer stateSerializer)
      +
    + + + +
      +
    • +

      registerActor

      +
      public <T extends AbstractActor> void registerActor​(Class<T> clazz,
      +                                                    ActorFactory<T> actorFactory,
      +                                                    DaprObjectSerializer objectSerializer,
      +                                                    DaprObjectSerializer stateSerializer)
      Registers an actor with the runtime.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Actor class type.
      -
      Parameters:
      +
      Parameters:
      clazz - The type of actor.
      actorFactory - An optional factory to create actors. This can be used for dependency injection.
      objectSerializer - Serializer for Actor's request and response objects.
      stateSerializer - Serializer for Actor's state objects.
      -
    • -
    • -
      -

      deactivate

      -
      public reactor.core.publisher.Mono<Void> deactivate(String actorTypeName, - String actorId)
      +
    + + + +
      +
    • +

      deactivate

      +
      public reactor.core.publisher.Mono<Void> deactivate​(String actorTypeName,
      +                                                    String actorId)
      Deactivates an actor for an actor type with given actor id.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorTypeName - Actor type name to deactivate the actor for.
      actorId - Actor id for the actor to be deactivated.
      -
      Returns:
      +
      Returns:
      Async void task.
      -
    • -
    • -
      -

      invoke

      -
      public reactor.core.publisher.Mono<byte[]> invoke(String actorTypeName, - String actorId, - String actorMethodName, - byte[] payload)
      +
    + + + +
      +
    • +

      invoke

      +
      public reactor.core.publisher.Mono<byte[]> invoke​(String actorTypeName,
      +                                                  String actorId,
      +                                                  String actorMethodName,
      +                                                  byte[] payload)
      Invokes the specified method for the actor, this is mainly used for cross language invocation.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorTypeName - Actor type name to invoke the method for.
      actorId - Actor id for the actor for which method will be invoked.
      actorMethodName - Method name on actor type which will be invoked.
      payload - RAW payload for the actor method.
      -
      Returns:
      +
      Returns:
      Response for the actor method.
      -
    • -
    • -
      -

      invokeReminder

      -
      public reactor.core.publisher.Mono<Void> invokeReminder(String actorTypeName, - String actorId, - String reminderName, - byte[] params)
      +
    + + + +
      +
    • +

      invokeReminder

      +
      public reactor.core.publisher.Mono<Void> invokeReminder​(String actorTypeName,
      +                                                        String actorId,
      +                                                        String reminderName,
      +                                                        byte[] params)
      Fires a reminder for the Actor.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorTypeName - Actor type name to invoke the method for.
      actorId - Actor id for the actor for which method will be invoked.
      reminderName - The name of reminder provided during registration.
      params - Params for the reminder.
      -
      Returns:
      +
      Returns:
      Async void task.
      -
    • -
    • -
      -

      invokeTimer

      -
      public reactor.core.publisher.Mono<Void> invokeTimer(String actorTypeName, - String actorId, - String timerName, - byte[] params)
      +
    + + + +
      +
    • +

      invokeTimer

      +
      public reactor.core.publisher.Mono<Void> invokeTimer​(String actorTypeName,
      +                                                     String actorId,
      +                                                     String timerName,
      +                                                     byte[] params)
      Fires a timer for the Actor.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorTypeName - Actor type name to invoke the method for.
      actorId - Actor id for the actor for which method will be invoked.
      timerName - The name of timer provided during registration.
      params - Params to trigger timer.
      -
      Returns:
      +
      Returns:
      Async void task.
      -
    • -
    • -
      -

      close

      -
      public void close()
      -
      -
      Specified by:
      -
      close in interface AutoCloseable
      -
      Specified by:
      -
      close in interface Closeable
      +
    + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorRuntimeConfig.html b/docs/io/dapr/actors/runtime/ActorRuntimeConfig.html index ac29ce4f3..4e1e3b0d1 100644 --- a/docs/io/dapr/actors/runtime/ActorRuntimeConfig.html +++ b/docs/io/dapr/actors/runtime/ActorRuntimeConfig.html @@ -2,40 +2,59 @@ - -ActorRuntimeConfig (dapr-sdk-parent 1.7.1 API) - + +ActorRuntimeConfig (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorRuntimeConfig

    + +

    Class ActorRuntimeConfig

    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorRuntimeConfig
    -
    -
    +
    + +
    +
      +

    • -
      public class ActorRuntimeConfig -extends Object
      +
      public class ActorRuntimeConfig
      +extends Object
      Represents the configuration for the Actor Runtime.
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      setActorScanInterval

      +
      public ActorRuntimeConfig setActorScanInterval​(Duration actorScanInterval)
      Sets the duration to scan for Actors.
      -
      -
      Parameters:
      +
      +
      Parameters:
      actorScanInterval - The duration to scan for Actors.
      -
      Returns:
      +
      Returns:
      This instance.
      -
    • -
    • -
      -

      getDrainOngoingCallTimeout

      -
      public Duration getDrainOngoingCallTimeout()
      +
    + + + +
      +
    • +

      getDrainOngoingCallTimeout

      +
      public Duration getDrainOngoingCallTimeout()
      Gets the timeout to drain ongoing calls.
      -
      -
      Returns:
      +
      +
      Returns:
      The timeout to drain ongoing calls.
      -
    • -
    • -
      -

      setDrainOngoingCallTimeout

      -
      public ActorRuntimeConfig setDrainOngoingCallTimeout(Duration drainOngoingCallTimeout)
      +
    + + + +
      +
    • +

      setDrainOngoingCallTimeout

      +
      public ActorRuntimeConfig setDrainOngoingCallTimeout​(Duration drainOngoingCallTimeout)
      Sets the timeout to drain ongoing calls.
      -
      -
      Parameters:
      +
      +
      Parameters:
      drainOngoingCallTimeout - The timeout to drain ongoing calls.
      -
      Returns:
      +
      Returns:
      This instance.
      -
    • -
    • -
      -

      getDrainBalancedActors

      -
      public Boolean getDrainBalancedActors()
      +
    + + + +
      +
    • +

      getDrainBalancedActors

      +
      public Boolean getDrainBalancedActors()
      Gets whether balanced actors should be drained.
      -
      -
      Returns:
      +
      +
      Returns:
      Whether balanced actors should be drained.
      -
    • -
    • -
      -

      setDrainBalancedActors

      -
      public ActorRuntimeConfig setDrainBalancedActors(Boolean drainBalancedActors)
      +
    + + + +
      +
    • +

      setDrainBalancedActors

      +
      public ActorRuntimeConfig setDrainBalancedActors​(Boolean drainBalancedActors)
      Sets whether balanced actors should be drained.
      -
      -
      Parameters:
      +
      +
      Parameters:
      drainBalancedActors - Whether balanced actors should be drained.
      -
      Returns:
      +
      Returns:
      This instance.
      -
    • -
    • -
      -

      getRemindersStoragePartitions

      -
      public Integer getRemindersStoragePartitions()
      +
    + + + +
      +
    • +

      getRemindersStoragePartitions

      +
      public Integer getRemindersStoragePartitions()
      Gets the number of storage partitions for Actor reminders.
      -
      -
      Returns:
      +
      +
      Returns:
      The number of Actor reminder storage partitions.
      -
    • -
    • -
      -

      setRemindersStoragePartitions

      -
      public ActorRuntimeConfig setRemindersStoragePartitions(Integer remindersStoragePartitions)
      +
    + + + +
      +
    • +

      setRemindersStoragePartitions

      +
      public ActorRuntimeConfig setRemindersStoragePartitions​(Integer remindersStoragePartitions)
      Sets the number of storage partitions for Actor reminders.
      -
      -
      Parameters:
      +
      +
      Parameters:
      remindersStoragePartitions - The number of storage partitions for Actor reminders.
      -
      Returns:
      +
      Returns:
      This instance.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorRuntimeContext.html b/docs/io/dapr/actors/runtime/ActorRuntimeContext.html index f90a985ac..e728524c6 100644 --- a/docs/io/dapr/actors/runtime/ActorRuntimeContext.html +++ b/docs/io/dapr/actors/runtime/ActorRuntimeContext.html @@ -2,36 +2,53 @@ - -ActorRuntimeContext (dapr-sdk-parent 1.7.1 API) - + +ActorRuntimeContext (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorRuntimeContext<T extends AbstractActor>

    -
    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorRuntimeContext<T>
    + +

    Class ActorRuntimeContext<T extends AbstractActor>

    -
    -
    -
    Type Parameters:
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      T - Actor's type for the context.

      -
      public class ActorRuntimeContext<T extends AbstractActor> -extends Object
      +
      public class ActorRuntimeContext<T extends AbstractActor>
      +extends Object
      Provides the context for the Actor's runtime.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorStateChange.html b/docs/io/dapr/actors/runtime/ActorStateChange.html index 20348fa7f..f9ea50dfc 100644 --- a/docs/io/dapr/actors/runtime/ActorStateChange.html +++ b/docs/io/dapr/actors/runtime/ActorStateChange.html @@ -2,36 +2,53 @@ - -ActorStateChange (dapr-sdk-parent 1.7.1 API) - + +ActorStateChange (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorStateChange

    -
    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorStateChange
    + +

    Class ActorStateChange

    -
    +
    + +
    +
      +

    • -
      public final class ActorStateChange -extends Object
      +
      public final class ActorStateChange
      +extends Object
      Represents a state change for an actor.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorStateChangeKind.html b/docs/io/dapr/actors/runtime/ActorStateChangeKind.html index 43d0e52cb..da8482468 100644 --- a/docs/io/dapr/actors/runtime/ActorStateChangeKind.html +++ b/docs/io/dapr/actors/runtime/ActorStateChangeKind.html @@ -2,40 +2,59 @@ - -ActorStateChangeKind (dapr-sdk-parent 1.7.1 API) - + +ActorStateChangeKind (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class ActorStateChangeKind

    + +

    Enum ActorStateChangeKind

    -
    java.lang.Object -
    java.lang.Enum<ActorStateChangeKind> -
    io.dapr.actors.runtime.ActorStateChangeKind
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      -
      public static ActorStateChangeKind[] values()
      -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static ActorStateChangeKind[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (ActorStateChangeKind c : ActorStateChangeKind.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      -
      public static ActorStateChangeKind valueOf(String name)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static ActorStateChangeKind valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/ActorStateManager.html b/docs/io/dapr/actors/runtime/ActorStateManager.html index ca8a7836f..2d306720f 100644 --- a/docs/io/dapr/actors/runtime/ActorStateManager.html +++ b/docs/io/dapr/actors/runtime/ActorStateManager.html @@ -2,40 +2,59 @@ - -ActorStateManager (dapr-sdk-parent 1.7.1 API) - + +ActorStateManager (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ActorStateManager

    -
    -
    java.lang.Object -
    io.dapr.actors.runtime.ActorStateManager
    + +

    Class ActorStateManager

    -
    +
    + +
    +
      +

    • -
      public class ActorStateManager -extends Object
      +
      public class ActorStateManager
      +extends Object
      Manages state changes of a given Actor instance. All changes are cached in-memory until save() is called.
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      <T> reactor.core.publisher.Mono<Void>
      -
      add​(String stateName, - T value)
      -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          add

          -
          public <T> reactor.core.publisher.Mono<Void> add(String stateName, - T value)
          +
          +
            +
          • + + +

            Method Detail

            + + + + + +
              +
            • +

              add

              +
              public <T> reactor.core.publisher.Mono<Void> add​(String stateName,
              +                                                 T value)
              Adds a given key/value to the Actor's state store's cache.
              -
              -
              Type Parameters:
              +
              +
              Type Parameters:
              T - Type of the object being added.
              -
              Parameters:
              +
              Parameters:
              stateName - Name of the state being added.
              value - Value to be added.
              -
              Returns:
              +
              Returns:
              Asynchronous void operation.
              -
        • -
        • -
          -

          get

          -
          public <T> reactor.core.publisher.Mono<T> get(String stateName, - Class<T> clazz)
          +
        + + + +
          +
        • +

          get

          +
          public <T> reactor.core.publisher.Mono<T> get​(String stateName,
          +                                              Class<T> clazz)
          Fetches the most recent value for the given state, including cached value.
          -
          -
          Type Parameters:
          +
          +
          Type Parameters:
          T - Type being fetched.
          -
          Parameters:
          +
          Parameters:
          stateName - Name of the state.
          clazz - Class type for the value being fetched.
          -
          Returns:
          +
          Returns:
          Asynchronous response with fetched object.
          -
      • -
      • -
        -

        get

        -
        public <T> reactor.core.publisher.Mono<T> get(String stateName, - TypeRef<T> type)
        +
      + + + +
        +
      • +

        get

        +
        public <T> reactor.core.publisher.Mono<T> get​(String stateName,
        +                                              TypeRef<T> type)
        Fetches the most recent value for the given state, including cached value.
        -
        -
        Type Parameters:
        +
        +
        Type Parameters:
        T - Type being fetched.
        -
        Parameters:
        +
        Parameters:
        stateName - Name of the state.
        type - Class type for the value being fetched.
        -
        Returns:
        +
        Returns:
        Asynchronous response with fetched object.
        -
    • -
    • -
      -

      set

      -
      public <T> reactor.core.publisher.Mono<Void> set(String stateName, - T value)
      +
    + + + + + +
      +
    • +

      set

      +
      public <T> reactor.core.publisher.Mono<Void> set​(String stateName,
      +                                                 T value)
      Updates a given key/value pair in the state store's cache.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Type of the value being set.
      -
      Parameters:
      +
      Parameters:
      stateName - Name of the state being updated.
      value - Value to be set for given state.
      -
      Returns:
      +
      Returns:
      Asynchronous void result.
      -
    • -
    • -
      -

      remove

      -
      public reactor.core.publisher.Mono<Void> remove(String stateName)
      +
    + + + +
      +
    • +

      remove

      +
      public reactor.core.publisher.Mono<Void> remove​(String stateName)
      Removes a given state from state store's cache.
      -
      -
      Parameters:
      +
      +
      Parameters:
      stateName - State being stored.
      -
      Returns:
      +
      Returns:
      Asynchronous void result.
      -
    • -
    • -
      -

      contains

      -
      public reactor.core.publisher.Mono<Boolean> contains(String stateName)
      +
    + + + +
      +
    • +

      contains

      +
      public reactor.core.publisher.Mono<Boolean> contains​(String stateName)
      Checks if a given state exists in state store or cache.
      -
      -
      Parameters:
      +
      +
      Parameters:
      stateName - State being checked.
      -
      Returns:
      +
      Returns:
      Asynchronous boolean result indicating whether state is present.
      -
    • -
    • -
      -

      save

      -
      public reactor.core.publisher.Mono<Void> save()
      +
    + + + +
      +
    • +

      save

      +
      public reactor.core.publisher.Mono<Void> save()
      Saves all changes to state store.
      -
      -
      Returns:
      +
      +
      Returns:
      Asynchronous void result.
      -
    • -
    • -
      -

      clear

      -
      public void clear()
      +
    + + + +
      +
    • +

      clear

      +
      public void clear()
      Clears all changes not yet saved to state store.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/Remindable.html b/docs/io/dapr/actors/runtime/Remindable.html index 84bd56cc3..ce8d24baf 100644 --- a/docs/io/dapr/actors/runtime/Remindable.html +++ b/docs/io/dapr/actors/runtime/Remindable.html @@ -2,40 +2,59 @@ - -Remindable (dapr-sdk-parent 1.7.1 API) - + +Remindable (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Interface Remindable<T>

    + +

    Interface Remindable<T>

    -
    +
    +
    +
      +

    • -
      public interface Remindable<T>
      +
      public interface Remindable<T>
      Interface that actors must implement to consume reminders registered using RegisterReminderAsync.
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStateType

          -
          TypeRef<T> getStateType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStateType

              +
              TypeRef<T> getStateType()
              Gets the type for state object.
              -
              -
              Returns:
              +
              +
              Returns:
              Class for state object.
              -
        • -
        • -
          -

          receiveReminder

          -
          reactor.core.publisher.Mono<Void> receiveReminder(String reminderName, - T state, - Duration dueTime, - Duration period)
          +
        + + + + + +
          +
        • +

          receiveReminder

          +
          reactor.core.publisher.Mono<Void> receiveReminder​(String reminderName,
          +                                                  T state,
          +                                                  Duration dueTime,
          +                                                  Duration period)
          The reminder call back invoked when an actor reminder is triggered. The state of this actor is saved by the actor runtime upon completion of the task returned by this method. If an error occurs while saving the state, then all state cached by this actor's ActorStateManager will be discarded and reloaded from previously saved state when the next actor method or reminder invocation occurs.
          -
          -
          Parameters:
          +
          +
          Parameters:
          reminderName - The name of reminder provided during registration.
          state - The user state provided during registration.
          dueTime - The invocation due time provided during registration.
          period - The invocation period provided during registration.
          -
          Returns:
          +
          Returns:
          A task that represents the asynchronous operation performed by this callback.
          -
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/AbstractActor.html b/docs/io/dapr/actors/runtime/class-use/AbstractActor.html index ce823354a..75e76a29b 100644 --- a/docs/io/dapr/actors/runtime/class-use/AbstractActor.html +++ b/docs/io/dapr/actors/runtime/class-use/AbstractActor.html @@ -2,129 +2,246 @@ - -Uses of Class io.dapr.actors.runtime.AbstractActor (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.AbstractActor (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.AbstractActor

    +

    Uses of Class
    io.dapr.actors.runtime.AbstractActor

    -
    Packages that use AbstractActor
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorFactory.html b/docs/io/dapr/actors/runtime/class-use/ActorFactory.html index 4e1583745..20eb8b1d1 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorFactory.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorFactory.html @@ -2,101 +2,206 @@ - -Uses of Interface io.dapr.actors.runtime.ActorFactory (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.actors.runtime.ActorFactory (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.actors.runtime.ActorFactory

    -
    -
    Packages that use ActorFactory
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.actors.runtime.ActorFactory

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorMethodContext.html b/docs/io/dapr/actors/runtime/class-use/ActorMethodContext.html index 216e8847a..489c031c8 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorMethodContext.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorMethodContext.html @@ -2,97 +2,202 @@ - -Uses of Class io.dapr.actors.runtime.ActorMethodContext (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorMethodContext (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorMethodContext

    -
    -
    Packages that use ActorMethodContext
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorMethodContext

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorObjectSerializer.html b/docs/io/dapr/actors/runtime/class-use/ActorObjectSerializer.html index 5b16a9702..5b5c97603 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorObjectSerializer.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorObjectSerializer.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.actors.runtime.ActorObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorObjectSerializer

    +

    Uses of Class
    io.dapr.actors.runtime.ActorObjectSerializer

    -No usage of io.dapr.actors.runtime.ActorObjectSerializer
    +
    No usage of io.dapr.actors.runtime.ActorObjectSerializer
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorRuntime.html b/docs/io/dapr/actors/runtime/class-use/ActorRuntime.html index 7de8038c3..d7e353415 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorRuntime.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorRuntime.html @@ -2,92 +2,195 @@ - -Uses of Class io.dapr.actors.runtime.ActorRuntime (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorRuntime (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorRuntime

    -
    -
    Packages that use ActorRuntime
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorRuntime

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorRuntimeConfig.html b/docs/io/dapr/actors/runtime/class-use/ActorRuntimeConfig.html index bcd99c559..26698d84d 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorRuntimeConfig.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorRuntimeConfig.html @@ -2,117 +2,230 @@ - -Uses of Class io.dapr.actors.runtime.ActorRuntimeConfig (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorRuntimeConfig (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorRuntimeConfig

    -
    -
    Packages that use ActorRuntimeConfig
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorRuntimeConfig

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorRuntimeContext.html b/docs/io/dapr/actors/runtime/class-use/ActorRuntimeContext.html index 0edb5c13d..55adb63df 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorRuntimeContext.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorRuntimeContext.html @@ -2,105 +2,212 @@ - -Uses of Class io.dapr.actors.runtime.ActorRuntimeContext (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorRuntimeContext (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorRuntimeContext

    -
    -
    Packages that use ActorRuntimeContext
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorRuntimeContext

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorStateChange.html b/docs/io/dapr/actors/runtime/class-use/ActorStateChange.html index 82a864fac..a827302e5 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorStateChange.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorStateChange.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.actors.runtime.ActorStateChange (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorStateChange (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorStateChange

    +

    Uses of Class
    io.dapr.actors.runtime.ActorStateChange

    -No usage of io.dapr.actors.runtime.ActorStateChange
    +
    No usage of io.dapr.actors.runtime.ActorStateChange
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorStateChangeKind.html b/docs/io/dapr/actors/runtime/class-use/ActorStateChangeKind.html index a02996b96..21fecd755 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorStateChangeKind.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorStateChangeKind.html @@ -2,98 +2,203 @@ - -Uses of Enum Class io.dapr.actors.runtime.ActorStateChangeKind (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorStateChangeKind (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Enum Class
    io.dapr.actors.runtime.ActorStateChangeKind

    -
    -
    Packages that use ActorStateChangeKind
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorStateChangeKind

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/ActorStateManager.html b/docs/io/dapr/actors/runtime/class-use/ActorStateManager.html index 811a12934..4f64e5054 100644 --- a/docs/io/dapr/actors/runtime/class-use/ActorStateManager.html +++ b/docs/io/dapr/actors/runtime/class-use/ActorStateManager.html @@ -2,92 +2,195 @@ - -Uses of Class io.dapr.actors.runtime.ActorStateManager (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.actors.runtime.ActorStateManager (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.actors.runtime.ActorStateManager

    -
    -
    Packages that use ActorStateManager
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.actors.runtime.ActorStateManager

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/class-use/Remindable.html b/docs/io/dapr/actors/runtime/class-use/Remindable.html index 2525b297c..6b1354180 100644 --- a/docs/io/dapr/actors/runtime/class-use/Remindable.html +++ b/docs/io/dapr/actors/runtime/class-use/Remindable.html @@ -2,65 +2,149 @@ - -Uses of Interface io.dapr.actors.runtime.Remindable (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.actors.runtime.Remindable (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.actors.runtime.Remindable

    +

    Uses of Interface
    io.dapr.actors.runtime.Remindable

    -No usage of io.dapr.actors.runtime.Remindable
    +
    No usage of io.dapr.actors.runtime.Remindable
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/package-summary.html b/docs/io/dapr/actors/runtime/package-summary.html index 290d210b3..d920c3a51 100644 --- a/docs/io/dapr/actors/runtime/package-summary.html +++ b/docs/io/dapr/actors/runtime/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.actors.runtime (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors.runtime (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.actors.runtime

    -
    -
    package io.dapr.actors.runtime
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/package-tree.html b/docs/io/dapr/actors/runtime/package-tree.html index 13cab3c1c..e9f44a226 100644 --- a/docs/io/dapr/actors/runtime/package-tree.html +++ b/docs/io/dapr/actors/runtime/package-tree.html @@ -2,111 +2,196 @@ - -io.dapr.actors.runtime Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.actors.runtime Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.actors.runtime

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    +

    Interface Hierarchy

    -
    -

    Enum Class Hierarchy

    +
    +

    Enum Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/actors/runtime/package-use.html b/docs/io/dapr/actors/runtime/package-use.html index 4a628460c..36824ab4b 100644 --- a/docs/io/dapr/actors/runtime/package-use.html +++ b/docs/io/dapr/actors/runtime/package-use.html @@ -2,117 +2,228 @@ - -Uses of Package io.dapr.actors.runtime (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.actors.runtime (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.actors.runtime

    -
    Packages that use io.dapr.actors.runtime
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/class-use/Rule.html b/docs/io/dapr/class-use/Rule.html index a1d8fde25..419972555 100644 --- a/docs/io/dapr/class-use/Rule.html +++ b/docs/io/dapr/class-use/Rule.html @@ -2,65 +2,195 @@ - -Uses of Annotation Interface io.dapr.Rule (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.Rule (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Annotation Interface
    io.dapr.Rule

    +

    Uses of Class
    io.dapr.Rule

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Packages that use Rule 
      PackageDescription
      io.dapr 
      +
    • +
    • +
        +
      • +
        + + +

        Uses of Rule in io.dapr

        + + + + + + + + + + + + + + +
        Methods in io.dapr that return Rule 
        Modifier and TypeMethodDescription
        Rulerule() +
        The rules used to match the incoming cloud event.
        +
        +
        +
      • +
      +
    • +
    -No usage of io.dapr.Rule
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/class-use/Topic.html b/docs/io/dapr/class-use/Topic.html index e45194f78..74bfbe898 100644 --- a/docs/io/dapr/class-use/Topic.html +++ b/docs/io/dapr/class-use/Topic.html @@ -2,65 +2,149 @@ - -Uses of Annotation Interface io.dapr.Topic (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.Topic (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Annotation Interface
    io.dapr.Topic

    +

    Uses of Class
    io.dapr.Topic

    -No usage of io.dapr.Topic
    +
    No usage of io.dapr.Topic
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprApiProtocol.html b/docs/io/dapr/client/DaprApiProtocol.html index dd79eb314..d0108ba55 100644 --- a/docs/io/dapr/client/DaprApiProtocol.html +++ b/docs/io/dapr/client/DaprApiProtocol.html @@ -2,40 +2,59 @@ - -DaprApiProtocol (dapr-sdk-parent 1.7.1 API) - + +DaprApiProtocol (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -
    +
    - -

    Enum Class DaprApiProtocol

    -
    -
    java.lang.Object -
    java.lang.Enum<DaprApiProtocol> -
    io.dapr.client.DaprApiProtocol
    -
    + +

    Enum DaprApiProtocol

    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
       
      - -
       
      +
    - +
    +
      +
    • + +
      +
        +
      • + + +

        Enum Constant Summary

        + + + + + + + + + + + + + + +
        Enum Constants 
        Enum ConstantDescription
        GRPC +
        Deprecated.
        HTTP +
        Deprecated.
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - -
      valueOf​(String name)
      -
      -
      Returns the enum constant of this class with the specified name.
      -
      - - -
      -
      Returns an array containing the constants of this enum class, in +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Enum Constant Details

        - +
        -
      • -
        -

        Method Details

        -
          -
        • -
          -

          values

          -
          public static DaprApiProtocol[] values()
          -
          Returns an array containing the constants of this enum class, in -the order they are declared.
          -
          -
          Returns:
          -
          an array containing the constants of this enum class, in the order they are declared
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              values

              +
              public static DaprApiProtocol[] values()
              +
              Deprecated.
              +
              Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
              +for (DaprApiProtocol c : DaprApiProtocol.values())
              +    System.out.println(c);
              +
              +
              +
              Returns:
              +
              an array containing the constants of this enum type, in the order they are declared
              -
        • -
        • -
          -

          valueOf

          -
          public static DaprApiProtocol valueOf(String name)
          -
          Returns the enum constant of this class with the specified name. +
        + + + +
          +
        • +

          valueOf

          +
          public static DaprApiProtocol valueOf​(String name)
          +
          Deprecated.
          +
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
          -
          -
          Parameters:
          +
          +
          Parameters:
          name - the name of the enum constant to be returned.
          -
          Returns:
          +
          Returns:
          the enum constant with the specified name
          -
          Throws:
          -
          IllegalArgumentException - if this enum class has no constant with the specified name
          -
          NullPointerException - if the argument is null
          +
          Throws:
          +
          IllegalArgumentException - if this enum type has no constant with the specified name
          +
          NullPointerException - if the argument is null
          -
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprClient.html b/docs/io/dapr/client/DaprClient.html index 307407ad6..a3f403188 100644 --- a/docs/io/dapr/client/DaprClient.html +++ b/docs/io/dapr/client/DaprClient.html @@ -2,40 +2,59 @@ - -DaprClient (dapr-sdk-parent 1.7.1 API) - + +DaprClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Interface DaprClient

    + +

    Interface DaprClient

    -
    -
    +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      publishEvent

      +
      reactor.core.publisher.Mono<Void> publishEvent​(PublishEventRequest request)
      Publish an event.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - the request for the publish event.
      -
      Returns:
      +
      Returns:
      a Mono plan of a Dapr's void response.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object data, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                Object data,
      +                                                HttpExtension httpExtension,
      +                                                Map<String,​String> metadata,
      +                                                TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      data - The data to be sent to invoke the service, use byte[] to skip serialization.
      @@ -549,25 +720,28 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in data.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                Object request,
      +                                                HttpExtension httpExtension,
      +                                                Map<String,​String> metadata,
      +                                                Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      @@ -575,789 +749,973 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                Object request,
      +                                                HttpExtension httpExtension,
      +                                                TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                Object request,
      +                                                HttpExtension httpExtension,
      +                                                Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                HttpExtension httpExtension,
      +                                                Map<String,​String> metadata,
      +                                                TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                String methodName,
      +                                                HttpExtension httpExtension,
      +                                                Map<String,​String> metadata,
      +                                                Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                               String methodName,
      +                                               Object request,
      +                                               HttpExtension httpExtension,
      +                                               Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Parameters:
      +
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                               String methodName,
      +                                               Object request,
      +                                               HttpExtension httpExtension)
      Invoke a service method, using serialization.
      -
      -
      Parameters:
      +
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                               String methodName,
      +                                               HttpExtension httpExtension,
      +                                               Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Parameters:
      +
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      reactor.core.publisher.Mono<byte[]> invokeMethod(String appId, - String methodName, - byte[] request, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      reactor.core.publisher.Mono<byte[]> invokeMethod​(String appId,
      +                                                 String methodName,
      +                                                 byte[] request,
      +                                                 HttpExtension httpExtension,
      +                                                 Map<String,​String> metadata)
      Invoke a service method, without using serialization.
      -
      -
      Parameters:
      +
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type byte[].
      -
    • -
    • -
      -

      invokeMethod

      -
      <T> reactor.core.publisher.Mono<T> invokeMethod(InvokeMethodRequest invokeMethodRequest, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      <T> reactor.core.publisher.Mono<T> invokeMethod​(InvokeMethodRequest invokeMethodRequest,
      +                                                TypeRef<T> type)
      Invoke a service method.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      invokeMethodRequest - Request object.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      reactor.core.publisher.Mono<Void> invokeBinding(String bindingName, - String operation, - Object data)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      reactor.core.publisher.Mono<Void> invokeBinding​(String bindingName,
      +                                                String operation,
      +                                                Object data)
      Invokes a Binding operation.
      -
      -
      Parameters:
      +
      +
      Parameters:
      bindingName - The bindingName of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      -
      Returns:
      +
      Returns:
      an empty Mono.
      -
    • -
    • -
      -

      invokeBinding

      -
      reactor.core.publisher.Mono<byte[]> invokeBinding(String bindingName, - String operation, - byte[] data, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      reactor.core.publisher.Mono<byte[]> invokeBinding​(String bindingName,
      +                                                  String operation,
      +                                                  byte[] data,
      +                                                  Map<String,​String> metadata)
      Invokes a Binding operation, skipping serialization.
      -
      -
      Parameters:
      +
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, skipping serialization.
      metadata - The metadata map.
      -
      Returns:
      +
      Returns:
      a Mono plan of type byte[].
      -
    • -
    • -
      -

      invokeBinding

      -
      <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                 String operation,
      +                                                 Object data,
      +                                                 TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                 String operation,
      +                                                 Object data,
      +                                                 Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                 String operation,
      +                                                 Object data,
      +                                                 Map<String,​String> metadata,
      +                                                 TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                 String operation,
      +                                                 Object data,
      +                                                 Map<String,​String> metadata,
      +                                                 Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      <T> reactor.core.publisher.Mono<T> invokeBinding(InvokeBindingRequest request, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      <T> reactor.core.publisher.Mono<T> invokeBinding​(InvokeBindingRequest request,
      +                                                 TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      request - The binding invocation request.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   State<T> state,
      +                                                   TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   State<T> state,
      +                                                   Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   String key,
      +                                                   TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   String key,
      +                                                   Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   String key,
      +                                                   StateOptions options,
      +                                                   TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                   String key,
      +                                                   StateOptions options,
      +                                                   Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      clazz - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      <T> reactor.core.publisher.Mono<State<T>> getState(GetStateRequest request, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      <T> reactor.core.publisher.Mono<State<T>> getState​(GetStateRequest request,
      +                                                   TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getBulkState

      -
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getBulkState

      +
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                             List<String> keys,
      +                                                             TypeRef<T> type)
      Retrieve bulk States based on their keys.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getBulkState

      -
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getBulkState

      +
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                             List<String> keys,
      +                                                             Class<T> clazz)
      Retrieve bulk States based on their keys.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getBulkState

      -
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState(GetBulkStateRequest request, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getBulkState

      +
      <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(GetBulkStateRequest request,
      +                                                             TypeRef<T> type)
      Retrieve bulk States based on their keys.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      executeStateTransaction

      -
      reactor.core.publisher.Mono<Void> executeStateTransaction(String storeName, - List<TransactionalStateOperation<?>> operations)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      reactor.core.publisher.Mono<Void> executeStateTransaction​(String storeName,
      +                                                          List<TransactionalStateOperation<?>> operations)
      Execute a transaction.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      operations - The operations to be performed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void
      -
    • -
    • -
      -

      executeStateTransaction

      -
      reactor.core.publisher.Mono<Void> executeStateTransaction(ExecuteStateTransactionRequest request)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      reactor.core.publisher.Mono<Void> executeStateTransaction​(ExecuteStateTransactionRequest request)
      Execute a transaction.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to execute transaction.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Response Void
      -
    • -
    • -
      -

      saveBulkState

      -
      reactor.core.publisher.Mono<Void> saveBulkState(String storeName, - List<State<?>> states)
      +
    + + + +
      +
    • +

      saveBulkState

      +
      reactor.core.publisher.Mono<Void> saveBulkState​(String storeName,
      +                                                List<State<?>> states)
      Save/Update a list of states.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      states - The States to be saved.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      saveBulkState

      -
      reactor.core.publisher.Mono<Void> saveBulkState(SaveStateRequest request)
      +
    + + + +
      +
    • +

      saveBulkState

      +
      reactor.core.publisher.Mono<Void> saveBulkState​(SaveStateRequest request)
      Save/Update a list of states.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to save states.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      saveState

      -
      reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - Object value)
      +
    + + + +
      +
    • +

      saveState

      +
      reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                            String key,
      +                                            Object value)
      Save/Update a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      value - The value of the state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      saveState

      -
      reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - String etag, - Object value, - StateOptions options)
      +
    + + + +
      +
    • +

      saveState

      +
      reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                            String key,
      +                                            String etag,
      +                                            Object value,
      +                                            StateOptions options)
      Save/Update a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      etag - The etag to be used.
      value - The value of the state.
      options - The Options to use for each state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      deleteState

      -
      reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key)
      +
    + + + +
      +
    • +

      deleteState

      +
      reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                              String key)
      Delete a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      deleteState

      -
      reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key, - String etag, - StateOptions options)
      +
    + + + +
      +
    • +

      deleteState

      +
      reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                              String key,
      +                                              String etag,
      +                                              StateOptions options)
      Delete a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      etag - Optional etag for conditional delete.
      options - Optional settings for state operation.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      deleteState

      -
      reactor.core.publisher.Mono<Void> deleteState(DeleteStateRequest request)
      +
    + + + +
      +
    • +

      deleteState

      +
      reactor.core.publisher.Mono<Void> deleteState​(DeleteStateRequest request)
      Delete a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to delete a state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      getSecret

      -
      reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String secretName, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getSecret

      +
      reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                String secretName,
      +                                                                Map<String,​String> metadata)
      Fetches a secret from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      secretName - Secret to be fetched.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      getSecret

      -
      reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String secretName)
      +
    + + + +
      +
    • +

      getSecret

      +
      reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                String secretName)
      Fetches a secret from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      secretName - Secret to be fetched.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      getSecret

      -
      reactor.core.publisher.Mono<Map<String,​String>> getSecret(GetSecretRequest request)
      +
    + + + +
      +
    • +

      getSecret

      +
      reactor.core.publisher.Mono<Map<String,​String>> getSecret​(GetSecretRequest request)
      Fetches a secret from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      getBulkSecret

      -
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName)
      +
    + + + +
      +
    • +

      getBulkSecret

      +
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName)
      Fetches all secrets from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
    • -
    • -
      -

      getBulkSecret

      -
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getBulkSecret

      +
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName,
      +                                                                                      Map<String,​String> metadata)
      Fetches all secrets from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
    • -
    • -
      -

      getBulkSecret

      -
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(GetBulkSecretRequest request)
      +
    + + + +
      +
    • +

      getBulkSecret

      +
      reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(GetBulkSecretRequest request)
      Fetches all secrets from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      shutdown

      -
      reactor.core.publisher.Mono<Void> shutdown()
      +
    + + + +
      +
    • +

      shutdown

      +
      reactor.core.publisher.Mono<Void> shutdown()
      Gracefully shutdown the dapr runtime.
      -
      -
      Returns:
      +
      +
      Returns:
      a Mono plan of type Void.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprClientBuilder.html b/docs/io/dapr/client/DaprClientBuilder.html index 1c201d7be..dbe7e9fcf 100644 --- a/docs/io/dapr/client/DaprClientBuilder.html +++ b/docs/io/dapr/client/DaprClientBuilder.html @@ -2,40 +2,59 @@ - -DaprClientBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprClientBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprClientBuilder

    + +

    Class DaprClientBuilder

    -
    java.lang.Object -
    io.dapr.client.DaprClientBuilder
    -
    -
    +
    + +
    +
      +

    • -
      public class DaprClientBuilder -extends Object
      +
      public class DaprClientBuilder
      +extends Object
      A builder for the DaprClient, Currently only gRPC and HTTP Client will be supported.
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      build

      +
      public DaprClient build()
      Build an instance of the Client based on the provided setup.
      -
      -
      Returns:
      +
      +
      Returns:
      an instance of the setup Client
      -
      Throws:
      -
      IllegalStateException - if any required field is missing
      +
      Throws:
      +
      IllegalStateException - if any required field is missing
      -
    • -
    • -
      -

      buildPreviewClient

      -
      public DaprPreviewClient buildPreviewClient()
      +
    + + + +
      +
    • +

      buildPreviewClient

      +
      public DaprPreviewClient buildPreviewClient()
      Build an instance of the Client based on the provided setup.
      -
      -
      Returns:
      +
      +
      Returns:
      an instance of the setup Client
      -
      Throws:
      -
      IllegalStateException - if any required field is missing
      +
      Throws:
      +
      IllegalStateException - if any required field is missing
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprClientGrpc.html b/docs/io/dapr/client/DaprClientGrpc.html index 7616c688c..0e05e1e9b 100644 --- a/docs/io/dapr/client/DaprClientGrpc.html +++ b/docs/io/dapr/client/DaprClientGrpc.html @@ -2,40 +2,59 @@ - -DaprClientGrpc (dapr-sdk-parent 1.7.1 API) - + +DaprClientGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprClientGrpc

    + +

    Class DaprClientGrpc

    -
    java.lang.Object -
    io.dapr.client.DaprClientGrpc
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      waitForSidecar

      -
      public reactor.core.publisher.Mono<Void> waitForSidecar(int timeoutInMilliseconds)
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          waitForSidecar

          +
          public reactor.core.publisher.Mono<Void> waitForSidecar​(int timeoutInMilliseconds)
          Waits for the sidecar, giving up after timeout.
          -
          -
          Parameters:
          +
          +
          Parameters:
          timeoutInMilliseconds - Timeout in milliseconds to wait for sidecar.
          -
          Returns:
          +
          Returns:
          a Mono plan of type Void.
          -
    • -
    • -
      -

      publishEvent

      -
      public reactor.core.publisher.Mono<Void> publishEvent(PublishEventRequest request)
      +
    + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(PublishEventRequest request)
      Publish an event.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - the request for the publish event.
      -
      Returns:
      +
      Returns:
      a Mono plan of a Dapr's void response.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(InvokeMethodRequest invokeMethodRequest, - TypeRef<T> type)
    + + + + + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(InvokeMethodRequest invokeMethodRequest,
      +                                                       TypeRef<T> type)
      Invoke a service method.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      invokeMethodRequest - Request object.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(InvokeBindingRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(InvokeBindingRequest request,
      +                                                        TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      request - The binding invocation request.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(GetStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(GetStateRequest request,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getBulkState

    -
    public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(GetBulkStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(GetBulkStateRequest request,
      +                                                                    TypeRef<T> type)
      Retrieve bulk States based on their keys.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    executeStateTransaction

    -
    public reactor.core.publisher.Mono<Void> executeStateTransaction(ExecuteStateTransactionRequest request)
    + + + + +
      +
    • +

      executeStateTransaction

      +
      public reactor.core.publisher.Mono<Void> executeStateTransaction​(ExecuteStateTransactionRequest request)
      Execute a transaction.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to execute transaction.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Response Void
      -
  • -
  • -
    -

    saveBulkState

    -
    public reactor.core.publisher.Mono<Void> saveBulkState(SaveStateRequest request)
    + + + + +
      +
    • +

      saveBulkState

      +
      public reactor.core.publisher.Mono<Void> saveBulkState​(SaveStateRequest request)
      Save/Update a list of states.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to save states.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    deleteState

    -
    public reactor.core.publisher.Mono<Void> deleteState(DeleteStateRequest request)
    + + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(DeleteStateRequest request)
      Delete a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to delete a state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    getSecret

    -
    public reactor.core.publisher.Mono<Map<String,​String>> getSecret(GetSecretRequest request)
    + + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(GetSecretRequest request)
      Fetches a secret from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    getBulkSecret

    -
    public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(GetBulkSecretRequest request)
    + + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(GetBulkSecretRequest request)
      Fetches all secrets from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                         TypeRef<T> type)
      Query for states using a query request.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    close

    -
    public void close() - throws Exception
    + + + + +
  • -
  • -
    -

    shutdown

    -
    public reactor.core.publisher.Mono<Void> shutdown()
    + + + + +
      +
    • +

      shutdown

      +
      public reactor.core.publisher.Mono<Void> shutdown()
      Gracefully shutdown the dapr runtime.
      -
      -
      Returns:
      +
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    getConfiguration

    -
    public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(GetConfigurationRequest request)
    + + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(GetConfigurationRequest request)
      Retrieve Map of configurations based on a provided configuration request object.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - request for retrieving Configurations for a list keys
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
  • -
  • -
    -

    subscribeConfiguration

    -
    public reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(SubscribeConfigurationRequest request)
    + + + + +
  • -
  • -
    -

    unsubscribeConfiguration

    -
    public reactor.core.publisher.Mono<UnsubscribeConfigurationResponse> unsubscribeConfiguration(UnsubscribeConfigurationRequest request)
    + + + + +
  • -
  • -
    -

    publishEvent

    -
    public reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, - String topicName, - Object data)
    + + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(String pubsubName,
      +                                                      String topicName,
      +                                                      Object data)
      Publish an event.
      -
      -
      Specified by:
      +
      +
      Specified by:
      publishEvent in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      pubsubName - the pubsub name we will publish the event to
      topicName - the topicName where the event will be published.
      data - the event's data to be published, use byte[] for skipping serialization.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    publishEvent

    -
    public reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, - String topicName, - Object data, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(String pubsubName,
      +                                                      String topicName,
      +                                                      Object data,
      +                                                      Map<String,​String> metadata)
      Publish an event.
      -
      -
      Specified by:
      +
      +
      Specified by:
      publishEvent in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      pubsubName - the pubsub name we will publish the event to
      topicName - the topicName where the event will be published.
      data - the event's data to be published, use byte[] for skipping serialization.
      metadata - The metadata for the published event.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object data, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object data,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      data - The data to be sent to invoke the service, use byte[] to skip serialization.
      @@ -965,27 +1316,30 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in data.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      @@ -993,1040 +1347,1351 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Class<T> clazz)
    + + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeMethod

    -
    public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension)
    + + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      Object request,
      +                                                      HttpExtension httpExtension)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
  • -
  • -
    -

    invokeMethod

    -
    public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      Object request,
      +                                                      HttpExtension httpExtension,
      +                                                      Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
  • -
  • -
    -

    invokeMethod

    -
    public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      HttpExtension httpExtension,
      +                                                      Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
  • -
  • -
    -

    invokeMethod

    -
    public reactor.core.publisher.Mono<byte[]> invokeMethod(String appId, - String methodName, - byte[] request, - HttpExtension httpExtension, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<byte[]> invokeMethod​(String appId,
      +                                                        String methodName,
      +                                                        byte[] request,
      +                                                        HttpExtension httpExtension,
      +                                                        Map<String,​String> metadata)
      Invoke a service method, without using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type byte[].
      -
  • -
  • -
    -

    invokeBinding

    -
    public reactor.core.publisher.Mono<Void> invokeBinding(String bindingName, - String operation, - Object data)
    + + + + +
      +
    • +

      invokeBinding

      +
      public reactor.core.publisher.Mono<Void> invokeBinding​(String bindingName,
      +                                                       String operation,
      +                                                       Object data)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      bindingName - The bindingName of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      -
      Returns:
      +
      Returns:
      an empty Mono.
      -
  • -
  • -
    -

    invokeBinding

    -
    public reactor.core.publisher.Mono<byte[]> invokeBinding(String bindingName, - String operation, - byte[] data, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      invokeBinding

      +
      public reactor.core.publisher.Mono<byte[]> invokeBinding​(String bindingName,
      +                                                         String operation,
      +                                                         byte[] data,
      +                                                         Map<String,​String> metadata)
      Invokes a Binding operation, skipping serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, skipping serialization.
      metadata - The metadata map.
      -
      Returns:
      +
      Returns:
      a Mono plan of type byte[].
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Class<T> clazz)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Map<String,​String> metadata,
      +                                                        TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - Class<T> clazz)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Map<String,​String> metadata,
      +                                                        Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - TypeRef<T> type)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          State<T> state,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - Class<T> clazz)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          State<T> state,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - TypeRef<T> type)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - Class<T> clazz)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - TypeRef<T> type)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          StateOptions options,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - Class<T> clazz)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          StateOptions options,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      clazz - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Map<String,​String> metadata, - Class<T> clazz)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         Class<T> clazz)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Map<String,​String> metadata, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Class<T> clazz)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Class<T> clazz)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - Class<T> clazz)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Class<T> clazz)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - Class<T> clazz)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                         Class<T> clazz)
      Query for states using a query request.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    getBulkState

    -
    public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - TypeRef<T> type)
    + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      events - the List of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      events - the varargs of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             Map<String,​String> requestMetadata,
      +                                                                             T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      events - the varargs of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             Map<String,​String> requestMetadata,
      +                                                                             List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      events - the List of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                                    List<String> keys,
      +                                                                    TypeRef<T> type)
      Retrieve bulk States based on their keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getBulkState

    -
    public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - Class<T> clazz)
    + + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                                    List<String> keys,
      +                                                                    Class<T> clazz)
      Retrieve bulk States based on their keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    executeStateTransaction

    -
    public reactor.core.publisher.Mono<Void> executeStateTransaction(String storeName, - List<TransactionalStateOperation<?>> operations)
    + + + + +
      +
    • +

      executeStateTransaction

      +
      public reactor.core.publisher.Mono<Void> executeStateTransaction​(String storeName,
      +                                                                 List<TransactionalStateOperation<?>> operations)
      Execute a transaction.
      -
      -
      Specified by:
      +
      +
      Specified by:
      executeStateTransaction in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      operations - The operations to be performed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void
      -
  • -
  • -
    -

    saveBulkState

    -
    public reactor.core.publisher.Mono<Void> saveBulkState(String storeName, - List<State<?>> states)
    + + + + +
      +
    • +

      saveBulkState

      +
      public reactor.core.publisher.Mono<Void> saveBulkState​(String storeName,
      +                                                       List<State<?>> states)
      Save/Update a list of states.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveBulkState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      states - The States to be saved.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    saveState

    -
    public reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - Object value)
    + + + + +
      +
    • +

      saveState

      +
      public reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                                   String key,
      +                                                   Object value)
      Save/Update a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      value - The value of the state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    saveState

    -
    public reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - String etag, - Object value, - StateOptions options)
    + + + + +
      +
    • +

      saveState

      +
      public reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                                   String key,
      +                                                   String etag,
      +                                                   Object value,
      +                                                   StateOptions options)
      Save/Update a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      etag - The etag to be used.
      value - The value of the state.
      options - The Options to use for each state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    deleteState

    -
    public reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key)
    + + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                                     String key)
      Delete a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      deleteState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    deleteState

    -
    public reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key, - String etag, - StateOptions options)
    + + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                                     String key,
      +                                                     String etag,
      +                                                     StateOptions options)
      Delete a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      deleteState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      etag - Optional etag for conditional delete.
      options - Optional settings for state operation.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    getSecret

    -
    public reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String key, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                       String key,
      +                                                                       Map<String,​String> metadata)
      Fetches a secret from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      key - Secret to be fetched.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    getSecret

    -
    public reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String secretName)
    + + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                       String secretName)
      Fetches a secret from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      secretName - Secret to be fetched.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    getBulkSecret

    -
    public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName)
    + + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName)
      Fetches all secrets from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
  • -
  • -
    -

    getBulkSecret

    -
    public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName,
      +                                                                                             Map<String,​String> metadata)
      Fetches all secrets from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
  • -
  • -
    -

    getConfiguration

    -
    public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, - String key)
    + + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration​(String storeName,
      +                                                                       String key)
      Retrieve a configuration based on a provided key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      key - key of the configuration item which is to be retrieved
      -
      Returns:
      +
      Returns:
      Mono of the Configuration Item
      -
  • -
  • -
    -

    getConfiguration

    -
    public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, - String key, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration​(String storeName,
      +                                                                       String key,
      +                                                                       Map<String,​String> metadata)
      Retrieve a configuration based on a provided key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      key - key of the configuration item which is to be retrieved
      metadata - optional metadata
      -
      Returns:
      +
      Returns:
      Mono of the Configuration Item
      -
  • -
  • -
    -

    getConfiguration

    -
    public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(String storeName, - String... keys)
    + + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(String storeName,
      +                                                                                         String... keys)
      Retrieve Map of configurations based on a provided variable number of keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      keys - keys of the configurations which are to be retrieved
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
  • -
  • -
    -

    getConfiguration

    -
    public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(String storeName, - List<String> keys, - Map<String,​String> metadata)
    + + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(String storeName,
      +                                                                                         List<String> keys,
      +                                                                                         Map<String,​String> metadata)
      Retrieve Map of configurations based on a provided variable number of keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      keys - keys of the configurations which are to be retrieved
      metadata - optional metadata
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
  • -
  • -
    -

    subscribeConfiguration

    -
    public reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, - String... keys)
    + + + + +
  • -
  • -
    -

    subscribeConfiguration

    -
    public reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, - List<String> keys, - Map<String,​String> metadata)
    + + + + +
  • -
  • -
    -

    unsubscribeConfiguration

    -
    public reactor.core.publisher.Mono<UnsubscribeConfigurationResponse> unsubscribeConfiguration(String id, - String storeName)
    + + + + +
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprClientHttp.html b/docs/io/dapr/client/DaprClientHttp.html index c1c8f3571..e501c4a1e 100644 --- a/docs/io/dapr/client/DaprClientHttp.html +++ b/docs/io/dapr/client/DaprClientHttp.html @@ -2,40 +2,59 @@ - -DaprClientHttp (dapr-sdk-parent 1.7.1 API) - + +DaprClientHttp (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprClientHttp

    + +

    Class DaprClientHttp

    -
    java.lang.Object -
    io.dapr.client.DaprClientHttp
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      waitForSidecar

      -
      public reactor.core.publisher.Mono<Void> waitForSidecar(int timeoutInMilliseconds)
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          waitForSidecar

          +
          public reactor.core.publisher.Mono<Void> waitForSidecar​(int timeoutInMilliseconds)
          +
          Deprecated.
          Waits for the sidecar, giving up after timeout.
          -
          -
          Parameters:
          +
          +
          Parameters:
          timeoutInMilliseconds - Timeout in milliseconds to wait for sidecar.
          -
          Returns:
          +
          Returns:
          a Mono plan of type Void.
          -
    • -
    • -
      -

      publishEvent

      -
      public reactor.core.publisher.Mono<Void> publishEvent(PublishEventRequest request)
      +
    + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(PublishEventRequest request)
      +
      Deprecated.
      Publish an event.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - the request for the publish event.
      -
      Returns:
      +
      Returns:
      a Mono plan of a Dapr's void response.
      -
  • -
  • -
    -

    invokeMethod

    -
    public <T> reactor.core.publisher.Mono<T> invokeMethod(InvokeMethodRequest invokeMethodRequest, - TypeRef<T> type)
    + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(BulkPublishRequest<T> request)
      +
      Deprecated.
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Type Parameters:
      +
      T - The type of events to publish in the call.
      +
      Parameters:
      +
      request - BulkPublishRequest object.
      +
      Returns:
      +
      A Mono of BulkPublishResponse object.
      +
      +
    • +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(InvokeMethodRequest invokeMethodRequest,
      +                                                       TypeRef<T> type)
      +
      Deprecated.
      Invoke a service method.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      invokeMethodRequest - Request object.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
  • -
  • -
    -

    invokeBinding

    -
    public <T> reactor.core.publisher.Mono<T> invokeBinding(InvokeBindingRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(InvokeBindingRequest request,
      +                                                        TypeRef<T> type)
      +
      Deprecated.
      Invokes a Binding operation.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      request - The binding invocation request.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
  • -
  • -
    -

    getBulkState

    -
    public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(GetBulkStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(GetBulkStateRequest request,
      +                                                                    TypeRef<T> type)
      +
      Deprecated.
      Retrieve bulk States based on their keys.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    getState

    -
    public <T> reactor.core.publisher.Mono<State<T>> getState(GetStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(GetStateRequest request,
      +                                                          TypeRef<T> type)
      +
      Deprecated.
      Retrieve a State based on their key.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      request - The request to get state.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
  • -
  • -
    -

    executeStateTransaction

    -
    public reactor.core.publisher.Mono<Void> executeStateTransaction(ExecuteStateTransactionRequest request)
    + + + + +
      +
    • +

      executeStateTransaction

      +
      public reactor.core.publisher.Mono<Void> executeStateTransaction​(ExecuteStateTransactionRequest request)
      +
      Deprecated.
      Execute a transaction.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to execute transaction.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Response Void
      -
  • -
  • -
    -

    saveBulkState

    -
    public reactor.core.publisher.Mono<Void> saveBulkState(SaveStateRequest request)
    + + + + +
      +
    • +

      saveBulkState

      +
      public reactor.core.publisher.Mono<Void> saveBulkState​(SaveStateRequest request)
      +
      Deprecated.
      Save/Update a list of states.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to save states.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    deleteState

    -
    public reactor.core.publisher.Mono<Void> deleteState(DeleteStateRequest request)
    + + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(DeleteStateRequest request)
      +
      Deprecated.
      Delete a state.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to delete a state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
  • -
  • -
    -

    getSecret

    -
    public reactor.core.publisher.Mono<Map<String,​String>> getSecret(GetSecretRequest request)
    + + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(GetSecretRequest request)
      +
      Deprecated.
      Fetches a secret from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    getBulkSecret

    -
    public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(GetBulkSecretRequest request)
    + + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(GetBulkSecretRequest request)
      +
      Deprecated.
      Fetches all secrets from the configured vault.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - Request to fetch secret.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
  • -
  • -
    -

    queryState

    -
    public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - TypeRef<T> type)
    + + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                         TypeRef<T> type)
      +
      Deprecated.
      Query for states using a query request.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
  • -
  • -
    -

    close

    -
    public void close()
    -
    + + + + +
      +
    • +

      close

      +
      public void close()
      +
      Deprecated.
    • -
    • -
      -

      shutdown

      -
      public reactor.core.publisher.Mono<Void> shutdown()
      +
    + + + +
      +
    • +

      shutdown

      +
      public reactor.core.publisher.Mono<Void> shutdown()
      +
      Deprecated.
      Gracefully shutdown the dapr runtime.
      -
      -
      Returns:
      +
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      getConfiguration

      -
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(GetConfigurationRequest request)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(GetConfigurationRequest request)
      +
      Deprecated.
      Retrieve Map of configurations based on a provided configuration request object.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - request for retrieving Configurations for a list keys
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
    • -
    • -
      -

      subscribeConfiguration

      -
      public reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(SubscribeConfigurationRequest request)
      +
    + + + + + + + + + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(String pubsubName,
      +                                                      String topicName,
      +                                                      Object data)
      Publish an event.
      -
      -
      Specified by:
      +
      +
      Specified by:
      publishEvent in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      pubsubName - the pubsub name we will publish the event to
      topicName - the topicName where the event will be published.
      data - the event's data to be published, use byte[] for skipping serialization.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      publishEvent

      -
      public reactor.core.publisher.Mono<Void> publishEvent(String pubsubName, - String topicName, - Object data, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      publishEvent

      +
      public reactor.core.publisher.Mono<Void> publishEvent​(String pubsubName,
      +                                                      String topicName,
      +                                                      Object data,
      +                                                      Map<String,​String> metadata)
      Publish an event.
      -
      -
      Specified by:
      +
      +
      Specified by:
      publishEvent in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      pubsubName - the pubsub name we will publish the event to
      topicName - the topicName where the event will be published.
      data - the event's data to be published, use byte[] for skipping serialization.
      metadata - The metadata for the published event.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object data, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object data,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      data - The data to be sent to invoke the service, use byte[] to skip serialization.
      @@ -953,27 +1346,30 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in data.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      @@ -981,1040 +1377,1351 @@

      invokeMethod

      HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       HttpExtension httpExtension,
      +                                                       Map<String,​String> metadata,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       TypeRef<T> type)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      type - The Type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public <T> reactor.core.publisher.Mono<T> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public <T> reactor.core.publisher.Mono<T> invokeMethod​(String appId,
      +                                                       String methodName,
      +                                                       Object request,
      +                                                       HttpExtension httpExtension,
      +                                                       Class<T> clazz)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type T.
      -
    • -
    • -
      -

      invokeMethod

      -
      public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      Object request,
      +                                                      HttpExtension httpExtension)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - Object request, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      Object request,
      +                                                      HttpExtension httpExtension,
      +                                                      Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      public reactor.core.publisher.Mono<Void> invokeMethod(String appId, - String methodName, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<Void> invokeMethod​(String appId,
      +                                                      String methodName,
      +                                                      HttpExtension httpExtension,
      +                                                      Map<String,​String> metadata)
      Invoke a service method, using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type Void.
      -
    • -
    • -
      -

      invokeMethod

      -
      public reactor.core.publisher.Mono<byte[]> invokeMethod(String appId, - String methodName, - byte[] request, - HttpExtension httpExtension, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeMethod

      +
      public reactor.core.publisher.Mono<byte[]> invokeMethod​(String appId,
      +                                                        String methodName,
      +                                                        byte[] request,
      +                                                        HttpExtension httpExtension,
      +                                                        Map<String,​String> metadata)
      Invoke a service method, without using serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeMethod in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      appId - The Application ID where the service is.
      methodName - The actual Method to be call in the application.
      request - The request to be sent to invoke the service, use byte[] to skip serialization.
      httpExtension - Additional fields that are needed if the receiving app is listening on HTTP, HttpExtension.NONE otherwise.
      metadata - Metadata (in GRPC) or headers (in HTTP) to be sent in request.
      -
      Returns:
      +
      Returns:
      A Mono Plan of type byte[].
      -
    • -
    • -
      -

      invokeBinding

      -
      public reactor.core.publisher.Mono<Void> invokeBinding(String bindingName, - String operation, - Object data)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public reactor.core.publisher.Mono<Void> invokeBinding​(String bindingName,
      +                                                       String operation,
      +                                                       Object data)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      bindingName - The bindingName of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      -
      Returns:
      +
      Returns:
      an empty Mono.
      -
    • -
    • -
      -

      invokeBinding

      -
      public reactor.core.publisher.Mono<byte[]> invokeBinding(String bindingName, - String operation, - byte[] data, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public reactor.core.publisher.Mono<byte[]> invokeBinding​(String bindingName,
      +                                                         String operation,
      +                                                         byte[] data,
      +                                                         Map<String,​String> metadata)
      Invokes a Binding operation, skipping serialization.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, skipping serialization.
      metadata - The metadata map.
      -
      Returns:
      +
      Returns:
      a Mono plan of type byte[].
      -
    • -
    • -
      -

      invokeBinding

      -
      public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Map<String,​String> metadata,
      +                                                        TypeRef<T> type)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      type - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      invokeBinding

      -
      public <T> reactor.core.publisher.Mono<T> invokeBinding(String bindingName, - String operation, - Object data, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      invokeBinding

      +
      public <T> reactor.core.publisher.Mono<T> invokeBinding​(String bindingName,
      +                                                        String operation,
      +                                                        Object data,
      +                                                        Map<String,​String> metadata,
      +                                                        Class<T> clazz)
      Invokes a Binding operation.
      -
      -
      Specified by:
      +
      +
      Specified by:
      invokeBinding in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return
      -
      Parameters:
      +
      Parameters:
      bindingName - The name of the biding to call.
      operation - The operation to be performed by the binding request processor.
      data - The data to be processed, use byte[] to skip serialization.
      metadata - The metadata map.
      clazz - The type being returned.
      -
      Returns:
      +
      Returns:
      a Mono plan of type T.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          State<T> state,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - State<T> state, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          State<T> state,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      state - State to be re-retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          StateOptions options,
      +                                                          TypeRef<T> type)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      type - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getState

      -
      public <T> reactor.core.publisher.Mono<State<T>> getState(String storeName, - String key, - StateOptions options, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getState

      +
      public <T> reactor.core.publisher.Mono<State<T>> getState​(String storeName,
      +                                                          String key,
      +                                                          StateOptions options,
      +                                                          Class<T> clazz)
      Retrieve a State based on their key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be retrieved.
      options - Optional settings for retrieve operation.
      clazz - The Type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         Class<T> clazz)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         Class<T> clazz)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         String query,
      +                                                                         TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Map<String,​String> metadata,
      +                                                                         TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                         Query query,
      +                                                                         TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      public <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      public <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                         Class<T> clazz)
      Query for states using a query request.
      -
      -
      Specified by:
      +
      +
      Specified by:
      queryState in interface DaprPreviewClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      getBulkState

      -
      public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      events - the List of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      events - the varargs of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             Map<String,​String> requestMetadata,
      +                                                                             T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      events - the varargs of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + +
      +
    • +

      publishEvents

      +
      public <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                             String topicName,
      +                                                                             String contentType,
      +                                                                             Map<String,​String> requestMetadata,
      +                                                                             List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Specified by:
      +
      publishEvents in interface DaprPreviewClient
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      events - the List of events to be published.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                                    List<String> keys,
      +                                                                    TypeRef<T> type)
      Retrieve bulk States based on their keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      type - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      getBulkState

      -
      public <T> -reactor.core.publisher.Mono<List<State<T>>> getBulkState(String storeName, - List<String> keys, - Class<T> clazz)
      +
    + + + +
      +
    • +

      getBulkState

      +
      public <T> reactor.core.publisher.Mono<List<State<T>>> getBulkState​(String storeName,
      +                                                                    List<String> keys,
      +                                                                    Class<T> clazz)
      Retrieve bulk States based on their keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkState in interface DaprClient
      -
      Type Parameters:
      +
      Type Parameters:
      T - The type of the return.
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      keys - The keys of the State to be retrieved.
      clazz - The type of State needed as return.
      -
      Returns:
      +
      Returns:
      A Mono Plan for the requested State.
      -
    • -
    • -
      -

      executeStateTransaction

      -
      public reactor.core.publisher.Mono<Void> executeStateTransaction(String storeName, - List<TransactionalStateOperation<?>> operations)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      public reactor.core.publisher.Mono<Void> executeStateTransaction​(String storeName,
      +                                                                 List<TransactionalStateOperation<?>> operations)
      Execute a transaction.
      -
      -
      Specified by:
      +
      +
      Specified by:
      executeStateTransaction in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      operations - The operations to be performed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void
      -
    • -
    • -
      -

      saveBulkState

      -
      public reactor.core.publisher.Mono<Void> saveBulkState(String storeName, - List<State<?>> states)
      +
    + + + +
      +
    • +

      saveBulkState

      +
      public reactor.core.publisher.Mono<Void> saveBulkState​(String storeName,
      +                                                       List<State<?>> states)
      Save/Update a list of states.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveBulkState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      states - The States to be saved.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      saveState

      -
      public reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - Object value)
      +
    + + + +
      +
    • +

      saveState

      +
      public reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                                   String key,
      +                                                   Object value)
      Save/Update a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      value - The value of the state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      saveState

      -
      public reactor.core.publisher.Mono<Void> saveState(String storeName, - String key, - String etag, - Object value, - StateOptions options)
      +
    + + + +
      +
    • +

      saveState

      +
      public reactor.core.publisher.Mono<Void> saveState​(String storeName,
      +                                                   String key,
      +                                                   String etag,
      +                                                   Object value,
      +                                                   StateOptions options)
      Save/Update a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      saveState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the state.
      etag - The etag to be used.
      value - The value of the state.
      options - The Options to use for each state.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      deleteState

      -
      public reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key)
      +
    + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                                     String key)
      Delete a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      deleteState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      deleteState

      -
      public reactor.core.publisher.Mono<Void> deleteState(String storeName, - String key, - String etag, - StateOptions options)
      +
    + + + +
      +
    • +

      deleteState

      +
      public reactor.core.publisher.Mono<Void> deleteState​(String storeName,
      +                                                     String key,
      +                                                     String etag,
      +                                                     StateOptions options)
      Delete a state.
      -
      -
      Specified by:
      +
      +
      Specified by:
      deleteState in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - The name of the state store.
      key - The key of the State to be removed.
      etag - Optional etag for conditional delete.
      options - Optional settings for state operation.
      -
      Returns:
      +
      Returns:
      a Mono plan of type Void.
      -
    • -
    • -
      -

      getSecret

      -
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String key, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                       String key,
      +                                                                       Map<String,​String> metadata)
      Fetches a secret from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      key - Secret to be fetched.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      getSecret

      -
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret(String storeName, - String secretName)
      +
    + + + +
      +
    • +

      getSecret

      +
      public reactor.core.publisher.Mono<Map<String,​String>> getSecret​(String storeName,
      +                                                                       String secretName)
      Fetches a secret from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      secretName - Secret to be fetched.
      -
      Returns:
      +
      Returns:
      Key-value pairs for the secret.
      -
    • -
    • -
      -

      getBulkSecret

      -
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName)
      +
    + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName)
      Fetches all secrets from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
    • -
    • -
      -

      getBulkSecret

      -
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret(String storeName, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getBulkSecret

      +
      public reactor.core.publisher.Mono<Map<String,​Map<String,​String>>> getBulkSecret​(String storeName,
      +                                                                                             Map<String,​String> metadata)
      Fetches all secrets from the configured vault.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBulkSecret in interface DaprClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of vault component in Dapr.
      metadata - Optional metadata.
      -
      Returns:
      +
      Returns:
      Key-value pairs for all the secrets in the state store.
      -
    • -
    • -
      -

      getConfiguration

      -
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, - String key)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration​(String storeName,
      +                                                                       String key)
      Retrieve a configuration based on a provided key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      key - key of the configuration item which is to be retrieved
      -
      Returns:
      +
      Returns:
      Mono of the Configuration Item
      -
    • -
    • -
      -

      getConfiguration

      -
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration(String storeName, - String key, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<ConfigurationItem> getConfiguration​(String storeName,
      +                                                                       String key,
      +                                                                       Map<String,​String> metadata)
      Retrieve a configuration based on a provided key.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      key - key of the configuration item which is to be retrieved
      metadata - optional metadata
      -
      Returns:
      +
      Returns:
      Mono of the Configuration Item
      -
    • -
    • -
      -

      getConfiguration

      -
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(String storeName, - String... keys)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(String storeName,
      +                                                                                         String... keys)
      Retrieve Map of configurations based on a provided variable number of keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      keys - keys of the configurations which are to be retrieved
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
    • -
    • -
      -

      getConfiguration

      -
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(String storeName, - List<String> keys, - Map<String,​String> metadata)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      public reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(String storeName,
      +                                                                                         List<String> keys,
      +                                                                                         Map<String,​String> metadata)
      Retrieve Map of configurations based on a provided variable number of keys.
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConfiguration in interface DaprPreviewClient
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the configuration store
      keys - keys of the configurations which are to be retrieved
      metadata - optional metadata
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
    • -
    • -
      -

      subscribeConfiguration

      -
      public reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, - String... keys)
      +
    + + + + + + + + + + + + -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprHttp.HttpMethods.html b/docs/io/dapr/client/DaprHttp.HttpMethods.html index a7e5d1213..cff52d0c3 100644 --- a/docs/io/dapr/client/DaprHttp.HttpMethods.html +++ b/docs/io/dapr/client/DaprHttp.HttpMethods.html @@ -2,40 +2,59 @@ - -DaprHttp.HttpMethods (dapr-sdk-parent 1.7.1 API) - + +DaprHttp.HttpMethods (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class DaprHttp.HttpMethods

    -
    -
    java.lang.Object -
    java.lang.Enum<DaprHttp.HttpMethods> -
    io.dapr.client.DaprHttp.HttpMethods
    + +

    Enum DaprHttp.HttpMethods

    -
    -
    -
    +
    + +
    +
    -
    -
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprHttp.Response.html b/docs/io/dapr/client/DaprHttp.Response.html index 2f93dabd1..b39d47a4e 100644 --- a/docs/io/dapr/client/DaprHttp.Response.html +++ b/docs/io/dapr/client/DaprHttp.Response.html @@ -2,40 +2,59 @@ - -DaprHttp.Response (dapr-sdk-parent 1.7.1 API) - + +DaprHttp.Response (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprHttp.Response

    + +

    Class DaprHttp.Response

    -
    java.lang.Object -
    io.dapr.client.DaprHttp.Response
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      DaprHttp

      -
      public static class DaprHttp.Response -extends Object
      -
    -
    -
      +
      public static class DaprHttp.Response
      +extends Object
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprHttp.html b/docs/io/dapr/client/DaprHttp.html index b8da45bf8..bf957cd9d 100644 --- a/docs/io/dapr/client/DaprHttp.html +++ b/docs/io/dapr/client/DaprHttp.html @@ -2,40 +2,59 @@ - -DaprHttp (dapr-sdk-parent 1.7.1 API) - + +DaprHttp (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprHttp

    + +

    Class DaprHttp

    -
    java.lang.Object -
    io.dapr.client.DaprHttp
    -
    -
    -
    +
    + +
    +
    -
    - +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      invokeApi

      -
      public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi(String method, - String[] pathSegments, - Map<String,​List<String>> urlParameters, - Map<String,​String> headers, - reactor.util.context.Context context)
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          invokeApi

          +
          public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi​(String method,
          +                                                                String[] pathSegments,
          +                                                                Map<String,​List<String>> urlParameters,
          +                                                                Map<String,​String> headers,
          +                                                                reactor.util.context.Context context)
          Invokes an API asynchronously without payload that returns a text payload.
          -
          -
          Parameters:
          +
          +
          Parameters:
          method - HTTP method.
          pathSegments - Array of path segments ("/a/b/c" maps to ["a", "b", "c"]).
          urlParameters - URL parameters
          headers - HTTP headers.
          context - OpenTelemetry's Context.
          -
          Returns:
          +
          Returns:
          Asynchronous text
          -
    • -
    • -
      -

      invokeApi

      -
      public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi(String method, - String[] pathSegments, - Map<String,​List<String>> urlParameters, - String content, - Map<String,​String> headers, - reactor.util.context.Context context)
      +
    + + + +
      +
    • +

      invokeApi

      +
      public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi​(String method,
      +                                                                String[] pathSegments,
      +                                                                Map<String,​List<String>> urlParameters,
      +                                                                String content,
      +                                                                Map<String,​String> headers,
      +                                                                reactor.util.context.Context context)
      Invokes an API asynchronously that returns a text payload.
      -
      -
      Parameters:
      +
      +
      Parameters:
      method - HTTP method.
      pathSegments - Array of path segments ("/a/b/c" maps to ["a", "b", "c"]).
      urlParameters - Parameters in the URL
      content - payload to be posted.
      headers - HTTP headers.
      context - OpenTelemetry's Context.
      -
      Returns:
      +
      Returns:
      Asynchronous response
      -
  • -
  • -
    -

    invokeApi

    -
    public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi(String method, - String[] pathSegments, - Map<String,​List<String>> urlParameters, - byte[] content, - Map<String,​String> headers, - reactor.util.context.Context context)
    + + + + +
      +
    • +

      invokeApi

      +
      public reactor.core.publisher.Mono<DaprHttp.Response> invokeApi​(String method,
      +                                                                String[] pathSegments,
      +                                                                Map<String,​List<String>> urlParameters,
      +                                                                byte[] content,
      +                                                                Map<String,​String> headers,
      +                                                                reactor.util.context.Context context)
      Invokes an API asynchronously that returns a text payload.
      -
      -
      Parameters:
      +
      +
      Parameters:
      method - HTTP method.
      pathSegments - Array of path segments ("/a/b/c" maps to ["a", "b", "c"]).
      urlParameters - Parameters in the URL
      content - payload to be posted.
      headers - HTTP headers.
      context - OpenTelemetry's Context.
      -
      Returns:
      +
      Returns:
      Asynchronous response
      -
  • -
  • -
    -

    close

    -
    public void close()
    + + + + +
      +
    • +

      close

      +
      public void close()
      Shutdown call is not necessary for OkHttpClient.
      -
      -
      Specified by:
      -
      close in interface AutoCloseable
      -
      See Also:
      +
      +
      Specified by:
      +
      close in interface AutoCloseable
      +
      See Also:
      OkHttpClient
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprHttpBuilder.html b/docs/io/dapr/client/DaprHttpBuilder.html index 24033b43a..b6ac6522e 100644 --- a/docs/io/dapr/client/DaprHttpBuilder.html +++ b/docs/io/dapr/client/DaprHttpBuilder.html @@ -2,40 +2,59 @@ - -DaprHttpBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprHttpBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprHttpBuilder

    -
    -
    java.lang.Object -
    io.dapr.client.DaprHttpBuilder
    + +

    Class DaprHttpBuilder

    -
    +
    + +
    +
      +

    • -
      public class DaprHttpBuilder -extends Object
      +
      @Deprecated
      +public class DaprHttpBuilder
      +extends Object
      +
      Deprecated. +
      Use DaprClientBuilder instead, this will be removed in a future release.
      +
      A builder for the DaprHttp.
      -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
       
      +
    • +
    - +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/DaprPreviewClient.html b/docs/io/dapr/client/DaprPreviewClient.html index 4f1db019c..02dc74013 100644 --- a/docs/io/dapr/client/DaprPreviewClient.html +++ b/docs/io/dapr/client/DaprPreviewClient.html @@ -2,40 +2,59 @@ - -DaprPreviewClient (dapr-sdk-parent 1.7.1 API) - + +DaprPreviewClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Interface DaprPreviewClient

    + +

    Interface DaprPreviewClient

    -
    -
    +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getConfiguration

      +
      reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(String storeName,
      +                                                                                  List<String> keys,
      +                                                                                  Map<String,​String> metadata)
      Retrieve Map of configurations based on a provided variable number of keys.
      -
      -
      Parameters:
      +
      +
      Parameters:
      storeName - Name of the configuration store
      keys - keys of the configurations which are to be retrieved
      metadata - optional metadata
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
    • -
    • -
      -

      getConfiguration

      -
      reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration(GetConfigurationRequest request)
      +
    + + + +
      +
    • +

      getConfiguration

      +
      reactor.core.publisher.Mono<Map<String,​ConfigurationItem>> getConfiguration​(GetConfigurationRequest request)
      Retrieve Map of configurations based on a provided configuration request object.
      -
      -
      Parameters:
      +
      +
      Parameters:
      request - request for retrieving Configurations for a list keys
      -
      Returns:
      +
      Returns:
      Mono of Map of ConfigurationItems
      -
    • -
    • -
      -

      subscribeConfiguration

      -
      reactor.core.publisher.Flux<SubscribeConfigurationResponse> subscribeConfiguration(String storeName, - String... keys)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  String query,
      +                                                                  Map<String,​String> metadata,
      +                                                                  Class<T> clazz)
      Query for states using a query string.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  String query,
      +                                                                  Map<String,​String> metadata,
      +                                                                  TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  String query,
      +                                                                  Class<T> clazz)
      Query for states using a query string.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - String query, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  String query,
      +                                                                  TypeRef<T> type)
      Query for states using a query string.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - String value of the query.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  Query query,
      +                                                                  Map<String,​String> metadata,
      +                                                                  Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Map<String,​String> metadata, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  Query query,
      +                                                                  Map<String,​String> metadata,
      +                                                                  TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      metadata - Optional metadata passed to the state store.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  Query query,
      +                                                                  Class<T> clazz)
      Query for states using a query domain object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(String storeName, - Query query, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(String storeName,
      +                                                                  Query query,
      +                                                                  TypeRef<T> type)
      Query for states using a query domain object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      storeName - Name of the state store to query.
      query - Query value domain object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - Class<T> clazz)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                  Class<T> clazz)
      Query for states using a query request.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      clazz - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    • -
    • -
      -

      queryState

      -
      <T> -reactor.core.publisher.Mono<QueryStateResponse<T>> queryState(QueryStateRequest request, - TypeRef<T> type)
      +
    + + + +
      +
    • +

      queryState

      +
      <T> reactor.core.publisher.Mono<QueryStateResponse<T>> queryState​(QueryStateRequest request,
      +                                                                  TypeRef<T> type)
      Query for states using a query request.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - The Type of the return, use byte[] to skip serialization.
      -
      Parameters:
      +
      Parameters:
      request - Query request object.
      type - The type needed as return for the call.
      -
      Returns:
      +
      Returns:
      A Mono of QueryStateResponse of type T.
      -
    - + + + + + + + +
      +
    • +

      publishEvents

      +
      <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                      String topicName,
      +                                                                      String contentType,
      +                                                                      List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      events - the List of events to be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                      String topicName,
      +                                                                      String contentType,
      +                                                                      T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      events - the varargs of events to be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + +
      +
    • +

      publishEvents

      +
      <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                      String topicName,
      +                                                                      String contentType,
      +                                                                      Map<String,​String> requestMetadata,
      +                                                                      List<T> events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      events - the List of events to be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    + + + + + +
      +
    • +

      publishEvents

      +
      <T> reactor.core.publisher.Mono<BulkPublishResponse<T>> publishEvents​(String pubsubName,
      +                                                                      String topicName,
      +                                                                      String contentType,
      +                                                                      Map<String,​String> requestMetadata,
      +                                                                      T... events)
      +
      Publish multiple events to Dapr in a single request.
      +
      +
      Type Parameters:
      +
      T - The type of the events to publish in the call.
      +
      Parameters:
      +
      pubsubName - the pubsub name we will publish the event to.
      +
      topicName - the topicName where the event will be published.
      +
      events - the varargs of events to be published.
      +
      contentType - the content type of the event. Use Mime based types.
      +
      requestMetadata - the metadata to be set at the request level for the BulkPublishRequest.
      +
      Returns:
      +
      the BulkPublishResponse containing publish status of each event. + The "entryID" field in BulkPublishEntry in BulkPublishResponseFailedEntry will be + generated based on the order of events in the List.
      +
      +
    • +
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/ObjectSerializer.html b/docs/io/dapr/client/ObjectSerializer.html index 0f6c98dce..9379bbf90 100644 --- a/docs/io/dapr/client/ObjectSerializer.html +++ b/docs/io/dapr/client/ObjectSerializer.html @@ -2,40 +2,59 @@ - -ObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +ObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ObjectSerializer

    + +

    Class ObjectSerializer

    -
    java.lang.Object -
    io.dapr.client.ObjectSerializer
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Field Summary

      -
      Fields
      -
      -
      Modifier and Type
      -
      Field
      -
      Description
      -
      protected static com.fasterxml.jackson.databind.ObjectMapper
      - -
      +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        protected static com.fasterxml.jackson.databind.ObjectMapperOBJECT_MAPPER
        Shared Json serializer/deserializer as per Jackson's documentation.
        - - - +
      • +
      +
      -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Modifier
      -
      Constructor
      -
      Description
      -
      protected
      - -
      +
      +
        +
      • + + +

        Constructor Summary

        + + + + + + + + + + + + +
        Constructors 
        ModifierConstructorDescription
        protected ObjectSerializer()
        Default constructor to avoid class from being instantiated outside package but still inherited.
        - - - +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      <T> T
      -
      deserialize​(byte[] content, - TypeRef<T> type)
      -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          OBJECT_MAPPER

          -
          protected static final com.fasterxml.jackson.databind.ObjectMapper OBJECT_MAPPER
          +
          +
            +
          • + + +

            Field Detail

            + + + +
              +
            • +

              OBJECT_MAPPER

              +
              protected static final com.fasterxml.jackson.databind.ObjectMapper OBJECT_MAPPER
              Shared Json serializer/deserializer as per Jackson's documentation.
              -
        -
      • +
      +
      -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        ObjectSerializer

        -
        protected ObjectSerializer()
        +
        +
          +
        • + + +

          Constructor Detail

          + + + +
            +
          • +

            ObjectSerializer

            +
            protected ObjectSerializer()
            Default constructor to avoid class from being instantiated outside package but still inherited.
            -
      -
    • +
    + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      serialize

      -
      public byte[] serialize(Object state) - throws IOException
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          serialize

          +
          public byte[] serialize​(Object state)
          +                 throws IOException
          Serializes a given state object into byte array.
          -
          -
          Parameters:
          +
          +
          Parameters:
          state - State object to be serialized.
          -
          Returns:
          +
          Returns:
          Array of bytes[] with the serialized content.
          -
          Throws:
          -
          IOException - In case state cannot be serialized.
          +
          Throws:
          +
          IOException - In case state cannot be serialized.
          -
    • -
    • -
      -

      deserialize

      -
      public <T> T deserialize(byte[] content, - TypeRef<T> type) - throws IOException
      +
    + + + +
      +
    • +

      deserialize

      +
      public <T> T deserialize​(byte[] content,
      +                         TypeRef<T> type)
      +                  throws IOException
      Deserializes the byte array into the original object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Generic type of the object being deserialized.
      -
      Parameters:
      +
      Parameters:
      content - Content to be parsed.
      type - Type of the object being deserialized.
      -
      Returns:
      +
      Returns:
      Object of type T.
      -
      Throws:
      -
      IOException - In case content cannot be deserialized.
      +
      Throws:
      +
      IOException - In case content cannot be deserialized.
      -
  • -
  • -
    -

    deserialize

    -
    public <T> T deserialize(byte[] content, - Class<T> clazz) - throws IOException
    + + + + +
      +
    • +

      deserialize

      +
      public <T> T deserialize​(byte[] content,
      +                         Class<T> clazz)
      +                  throws IOException
      Deserializes the byte array into the original object.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Generic type of the object being deserialized.
      -
      Parameters:
      +
      Parameters:
      content - Content to be parsed.
      clazz - Type of the object being deserialized.
      -
      Returns:
      +
      Returns:
      Object of type T.
      -
      Throws:
      -
      IOException - In case content cannot be deserialized.
      +
      Throws:
      +
      IOException - In case content cannot be deserialized.
      -
  • -
  • -
    -

    parseNode

    -
    public com.fasterxml.jackson.databind.JsonNode parseNode(byte[] content) - throws IOException
    + + + + +
      +
    • +

      parseNode

      +
      public com.fasterxml.jackson.databind.JsonNode parseNode​(byte[] content)
      +                                                  throws IOException
      Parses the JSON content into a node for fine-grained processing.
      -
      -
      Parameters:
      +
      +
      Parameters:
      content - JSON content.
      -
      Returns:
      +
      Returns:
      JsonNode.
      -
      Throws:
      -
      IOException - In case content cannot be parsed.
      +
      Throws:
      +
      IOException - In case content cannot be parsed.
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprApiProtocol.html b/docs/io/dapr/client/class-use/DaprApiProtocol.html index 880b65094..6f316f389 100644 --- a/docs/io/dapr/client/class-use/DaprApiProtocol.html +++ b/docs/io/dapr/client/class-use/DaprApiProtocol.html @@ -2,121 +2,244 @@ - -Uses of Enum Class io.dapr.client.DaprApiProtocol (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprApiProtocol (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.client.DaprApiProtocol

    -
    -
    Packages that use DaprApiProtocol
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprClient.html b/docs/io/dapr/client/class-use/DaprClient.html index 7260f4b8e..341725295 100644 --- a/docs/io/dapr/client/class-use/DaprClient.html +++ b/docs/io/dapr/client/class-use/DaprClient.html @@ -2,108 +2,221 @@ - -Uses of Interface io.dapr.client.DaprClient (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.client.DaprClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.client.DaprClient

    -
    -
    Packages that use DaprClient
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.client.DaprClient

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprClientBuilder.html b/docs/io/dapr/client/class-use/DaprClientBuilder.html index 939fc6bcd..00f37421b 100644 --- a/docs/io/dapr/client/class-use/DaprClientBuilder.html +++ b/docs/io/dapr/client/class-use/DaprClientBuilder.html @@ -2,97 +2,202 @@ - -Uses of Class io.dapr.client.DaprClientBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprClientBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.DaprClientBuilder

    -
    -
    Packages that use DaprClientBuilder
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.DaprClientBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprClientGrpc.html b/docs/io/dapr/client/class-use/DaprClientGrpc.html index 67f3cc52e..768e044b7 100644 --- a/docs/io/dapr/client/class-use/DaprClientGrpc.html +++ b/docs/io/dapr/client/class-use/DaprClientGrpc.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.DaprClientGrpc (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprClientGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.DaprClientGrpc

    +

    Uses of Class
    io.dapr.client.DaprClientGrpc

    -No usage of io.dapr.client.DaprClientGrpc
    +
    No usage of io.dapr.client.DaprClientGrpc
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprClientHttp.html b/docs/io/dapr/client/class-use/DaprClientHttp.html index df5b209bc..7c5af8a3c 100644 --- a/docs/io/dapr/client/class-use/DaprClientHttp.html +++ b/docs/io/dapr/client/class-use/DaprClientHttp.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.DaprClientHttp (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprClientHttp (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.DaprClientHttp

    +

    Uses of Class
    io.dapr.client.DaprClientHttp

    -No usage of io.dapr.client.DaprClientHttp
    +
    No usage of io.dapr.client.DaprClientHttp
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprHttp.HttpMethods.html b/docs/io/dapr/client/class-use/DaprHttp.HttpMethods.html index 71d562a56..a2d96b970 100644 --- a/docs/io/dapr/client/class-use/DaprHttp.HttpMethods.html +++ b/docs/io/dapr/client/class-use/DaprHttp.HttpMethods.html @@ -2,132 +2,252 @@ - -Uses of Enum Class io.dapr.client.DaprHttp.HttpMethods (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprHttp.HttpMethods (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Enum Class
    io.dapr.client.DaprHttp.HttpMethods

    -
    -
    Packages that use DaprHttp.HttpMethods
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprHttp.Response.html b/docs/io/dapr/client/class-use/DaprHttp.Response.html index d8f51faf9..ccc19a87c 100644 --- a/docs/io/dapr/client/class-use/DaprHttp.Response.html +++ b/docs/io/dapr/client/class-use/DaprHttp.Response.html @@ -2,116 +2,223 @@ - -Uses of Class io.dapr.client.DaprHttp.Response (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprHttp.Response (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.DaprHttp.Response

    -
    -
    Packages that use DaprHttp.Response
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.DaprHttp.Response

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprHttp.html b/docs/io/dapr/client/class-use/DaprHttp.html index 3c43abc8f..1535209c4 100644 --- a/docs/io/dapr/client/class-use/DaprHttp.html +++ b/docs/io/dapr/client/class-use/DaprHttp.html @@ -2,92 +2,196 @@ - -Uses of Class io.dapr.client.DaprHttp (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprHttp (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.DaprHttp

    -
    -
    Packages that use DaprHttp
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.DaprHttp

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprHttpBuilder.html b/docs/io/dapr/client/class-use/DaprHttpBuilder.html index 58c8e05b5..89f530d58 100644 --- a/docs/io/dapr/client/class-use/DaprHttpBuilder.html +++ b/docs/io/dapr/client/class-use/DaprHttpBuilder.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.DaprHttpBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.DaprHttpBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.DaprHttpBuilder

    +

    Uses of Class
    io.dapr.client.DaprHttpBuilder

    -No usage of io.dapr.client.DaprHttpBuilder
    +
    No usage of io.dapr.client.DaprHttpBuilder
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/DaprPreviewClient.html b/docs/io/dapr/client/class-use/DaprPreviewClient.html index bce2f7159..be2704917 100644 --- a/docs/io/dapr/client/class-use/DaprPreviewClient.html +++ b/docs/io/dapr/client/class-use/DaprPreviewClient.html @@ -2,108 +2,221 @@ - -Uses of Interface io.dapr.client.DaprPreviewClient (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.client.DaprPreviewClient (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Interface
    io.dapr.client.DaprPreviewClient

    -
    -
    Packages that use DaprPreviewClient
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.client.DaprPreviewClient

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/class-use/ObjectSerializer.html b/docs/io/dapr/client/class-use/ObjectSerializer.html index e414063c3..eb1f0709e 100644 --- a/docs/io/dapr/client/class-use/ObjectSerializer.html +++ b/docs/io/dapr/client/class-use/ObjectSerializer.html @@ -2,110 +2,223 @@ - -Uses of Class io.dapr.client.ObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.ObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.ObjectSerializer

    -
    -
    Packages that use ObjectSerializer
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.ObjectSerializer

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/BulkPublishEntry.html b/docs/io/dapr/client/domain/BulkPublishEntry.html new file mode 100644 index 000000000..2ab47c237 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkPublishEntry.html @@ -0,0 +1,401 @@ + + + + + +BulkPublishEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkPublishEntry<T>

    +
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      +
      T - Type of the event that is part of the request.
      +
      +
      +
      public final class BulkPublishEntry<T>
      +extends Object
      +
      Class representing an entry in the BulkPublishRequest or BulkPublishResponse.
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + + + +
          +
        • +

          BulkPublishEntry

          +
          public BulkPublishEntry​(String entryId,
          +                        T event,
          +                        String contentType)
          +
          Constructor for the BulkPublishRequestEntry object.
          +
          +
          Parameters:
          +
          entryId - A request scoped ID uniquely identifying this entry in the BulkPublishRequest.
          +
          event - Event to be published.
          +
          contentType - Content Type of the event to be published in MIME format.
          +
          +
        • +
        + + + + + +
          +
        • +

          BulkPublishEntry

          +
          public BulkPublishEntry​(String entryId,
          +                        T event,
          +                        String contentType,
          +                        Map<String,​String> metadata)
          +
          Constructor for the BulkPublishRequestEntry object.
          +
          +
          Parameters:
          +
          entryId - A request scoped ID uniquely identifying this entry in the BulkPublishRequest.
          +
          event - Event to be published.
          +
          contentType - Content Type of the event to be published in MIME format.
          +
          metadata - Metadata for the event.
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          public String getEntryId()
          +
        • +
        + + + +
          +
        • +

          getEvent

          +
          public T getEvent()
          +
        • +
        + + + +
          +
        • +

          getContentType

          +
          public String getContentType()
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkPublishRequest.html b/docs/io/dapr/client/domain/BulkPublishRequest.html new file mode 100644 index 000000000..bc281dce0 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkPublishRequest.html @@ -0,0 +1,411 @@ + + + + + +BulkPublishRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkPublishRequest<T>

    +
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      +
      T - Type parameter of the event.
      +
      +
      +
      public final class BulkPublishRequest<T>
      +extends Object
      +
      A request to bulk publish multiples events in a single call to Dapr.
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          BulkPublishRequest

          +
          public BulkPublishRequest​(String pubsubName,
          +                          String topic,
          +                          List<BulkPublishEntry<T>> entries)
          +
          Constructor for BulkPublishRequest.
          +
          +
          Parameters:
          +
          pubsubName - Name of the pubsub to publish to.
          +
          topic - Name of the topic to publish to.
          +
          entries - List of BulkPublishEntry objects.
          +
          +
        • +
        + + + +
          +
        • +

          BulkPublishRequest

          +
          public BulkPublishRequest​(String pubsubName,
          +                          String topic,
          +                          List<BulkPublishEntry<T>> entries,
          +                          Map<String,​String> metadata)
          +
          Constructor for the BulkPublishRequest.
          +
          +
          Parameters:
          +
          pubsubName - Name of the pubsub to publish to.
          +
          topic - Name of the topic to publish to.
          +
          entries - List of BulkPublishEntry objects.
          +
          metadata - Metadata for the request.
          +
          +
        • +
        +
      • +
      +
      + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkPublishResponse.html b/docs/io/dapr/client/domain/BulkPublishResponse.html new file mode 100644 index 000000000..104cbe390 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkPublishResponse.html @@ -0,0 +1,333 @@ + + + + + +BulkPublishResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkPublishResponse<T>

    +
    +
    + +
    +
      +
    • +
      +
      public class BulkPublishResponse<T>
      +extends Object
      +
      Class representing the response returned on bulk publishing events.
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          BulkPublishResponse

          +
          public BulkPublishResponse()
          +
          Default constructor for class.
          +
        • +
        + + + +
          +
        • +

          BulkPublishResponse

          +
          public BulkPublishResponse​(List<BulkPublishResponseFailedEntry<T>> failedEntries)
          +
          Constructor for the BulkPublishResponse object.
          +
          +
          Parameters:
          +
          failedEntries - The List of BulkPublishResponseEntries representing the list of + events that failed to be published.
          +
          +
        • +
        +
      • +
      +
      + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkPublishResponseFailedEntry.html b/docs/io/dapr/client/domain/BulkPublishResponseFailedEntry.html new file mode 100644 index 000000000..c3f803c34 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkPublishResponseFailedEntry.html @@ -0,0 +1,333 @@ + + + + + +BulkPublishResponseFailedEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkPublishResponseFailedEntry<T>

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.BulkPublishResponseFailedEntry<T>
      • +
      +
    • +
    +
    +
      +
    • +
      +
      public final class BulkPublishResponseFailedEntry<T>
      +extends Object
      +
      Class representing the entry that failed to be published using BulkPublishRequest.
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          BulkPublishResponseFailedEntry

          +
          public BulkPublishResponseFailedEntry​(BulkPublishEntry<T> entry,
          +                                      String errorMessage)
          +
          Constructor for BulkPublishResponseFailedEntry.
          +
          +
          Parameters:
          +
          entry - The entry that has failed.
          +
          errorMessage - The error message for why the entry failed.
          +
          +
        • +
        +
      • +
      +
      + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkSubscribeAppResponse.html b/docs/io/dapr/client/domain/BulkSubscribeAppResponse.html new file mode 100644 index 000000000..18d79306a --- /dev/null +++ b/docs/io/dapr/client/domain/BulkSubscribeAppResponse.html @@ -0,0 +1,316 @@ + + + + + +BulkSubscribeAppResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkSubscribeAppResponse

    +
    +
    + +
    +
      +
    • +
      +
      public final class BulkSubscribeAppResponse
      +extends Object
      +
      Response from the application containing status for each entry from the bulk publish message.
      +
    • +
    +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkSubscribeAppResponseEntry.html b/docs/io/dapr/client/domain/BulkSubscribeAppResponseEntry.html new file mode 100644 index 000000000..5b66f4800 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkSubscribeAppResponseEntry.html @@ -0,0 +1,333 @@ + + + + + +BulkSubscribeAppResponseEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkSubscribeAppResponseEntry

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.BulkSubscribeAppResponseEntry
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          BulkSubscribeAppResponseEntry

          +
          public BulkSubscribeAppResponseEntry​(String entryId,
          +                                     BulkSubscribeAppResponseStatus status)
          +
          Instantiate a BulkSubscribeAppResponseEntry.
          +
          +
          Parameters:
          +
          entryId - entry ID of the event.
          +
          status - status of the event processing in application.
          +
          +
        • +
        +
      • +
      +
      + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkSubscribeAppResponseStatus.html b/docs/io/dapr/client/domain/BulkSubscribeAppResponseStatus.html new file mode 100644 index 000000000..2216de9cc --- /dev/null +++ b/docs/io/dapr/client/domain/BulkSubscribeAppResponseStatus.html @@ -0,0 +1,394 @@ + + + + + +BulkSubscribeAppResponseStatus (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Enum BulkSubscribeAppResponseStatus

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static BulkSubscribeAppResponseStatus[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (BulkSubscribeAppResponseStatus c : BulkSubscribeAppResponseStatus.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          +
          +
        • +
        + + + +
          +
        • +

          valueOf

          +
          public static BulkSubscribeAppResponseStatus valueOf​(String name)
          +
          Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
          +
          +
          Parameters:
          +
          name - the name of the enum constant to be returned.
          +
          Returns:
          +
          the enum constant with the specified name
          +
          Throws:
          +
          IllegalArgumentException - if this enum type has no constant with the specified name
          +
          NullPointerException - if the argument is null
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/client/domain/BulkSubscribeMessage.html b/docs/io/dapr/client/domain/BulkSubscribeMessage.html new file mode 100644 index 000000000..7b436d9d8 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkSubscribeMessage.html @@ -0,0 +1,350 @@ + + + + + +BulkSubscribeMessage (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkSubscribeMessage<T>

    +
    +
    + +
    +
      +
    • +
      +
      public final class BulkSubscribeMessage<T>
      +extends Object
      +
      Represents a bulk of messages received from the message bus.
      +
    • +
    +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/BulkSubscribeMessageEntry.html b/docs/io/dapr/client/domain/BulkSubscribeMessageEntry.html new file mode 100644 index 000000000..dc47d3c85 --- /dev/null +++ b/docs/io/dapr/client/domain/BulkSubscribeMessageEntry.html @@ -0,0 +1,373 @@ + + + + + +BulkSubscribeMessageEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    + +

    Class BulkSubscribeMessageEntry<T>

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.BulkSubscribeMessageEntry<T>
      • +
      +
    • +
    +
    +
      +
    • +
      +
      Type Parameters:
      +
      T - Type of event.
      +
      +
      +
      public final class BulkSubscribeMessageEntry<T>
      +extends Object
      +
      Represents a single event from a BulkSubscribeMessage.
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + + + +
          +
        • +

          BulkSubscribeMessageEntry

          +
          public BulkSubscribeMessageEntry​(String entryId,
          +                                 T event,
          +                                 String contentType,
          +                                 Map<String,​String> metadata)
          +
          Instantiate a BulkPubSubMessageEntry.
          +
          +
          Parameters:
          +
          entryId - unique identifier for the event.
          +
          event - pubSub event.
          +
          contentType - content type of the event.
          +
          metadata - metadata for the event.
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          public String getEntryId()
          +
        • +
        + + + +
          +
        • +

          getEvent

          +
          public T getEvent()
          +
        • +
        + + + +
          +
        • +

          getContentType

          +
          public String getContentType()
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/client/domain/CloudEvent.html b/docs/io/dapr/client/domain/CloudEvent.html index 35b48359f..ea0baf3f2 100644 --- a/docs/io/dapr/client/domain/CloudEvent.html +++ b/docs/io/dapr/client/domain/CloudEvent.html @@ -2,40 +2,59 @@ - -CloudEvent (dapr-sdk-parent 1.7.1 API) - + +CloudEvent (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class CloudEvent<T>

    + +

    Class CloudEvent<T>

    -
    java.lang.Object -
    io.dapr.client.domain.CloudEvent<T>
    -
    -
    -
    -
    Type Parameters:
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      T - The type of the payload.

      -
      public class CloudEvent<T> -extends Object
      +
      public class CloudEvent<T>
      +extends Object
      A cloud event in Dapr.
      -
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      CloudEvent

      -
      public CloudEvent()
      +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          CloudEvent

          +
          public CloudEvent()
          Instantiates a CloudEvent.
          -
    • -
    • -
      -

      CloudEvent

      -
      public CloudEvent(String id, - String source, - String type, - String specversion, - String datacontenttype, - T data)
      +
    + + + + + +
      +
    • +

      CloudEvent

      +
      public CloudEvent​(String id,
      +                  String source,
      +                  String type,
      +                  String specversion,
      +                  String datacontenttype,
      +                  T data)
      Instantiates a CloudEvent.
      -
      -
      Parameters:
      +
      +
      Parameters:
      id - Identifier of the message being processed.
      source - Source for this event.
      type - Type of event.
      @@ -304,237 +441,353 @@

      -

      CloudEvent

      -
      public CloudEvent(String id, - String source, - String type, - String specversion, - byte[] binaryData)
      +
    + + + +
      +
    • +

      CloudEvent

      +
      public CloudEvent​(String id,
      +                  String source,
      +                  String type,
      +                  String specversion,
      +                  byte[] binaryData)
      Instantiates a CloudEvent.
      -
      -
      Parameters:
      +
      +
      Parameters:
      id - Identifier of the message being processed.
      source - Source for this event.
      type - Type of event.
      specversion - Version of the event spec.
      binaryData - Payload.
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      deserialize

      -
      public static CloudEvent<?> deserialize(byte[] payload) - throws IOException
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          deserialize

          +
          public static CloudEvent<?> deserialize​(byte[] payload)
          +                                 throws IOException
          Deserialize a message topic from Dapr.
          -
          -
          Parameters:
          +
          +
          Parameters:
          payload - Payload sent from Dapr.
          -
          Returns:
          +
          Returns:
          Message (can be null if input is null)
          -
          Throws:
          -
          IOException - If cannot parse.
          +
          Throws:
          +
          IOException - If cannot parse.
          -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + +
      +
    • +

      getId

      +
      public String getId()
      Gets the identifier of the message being processed.
      -
      -
      Returns:
      +
      +
      Returns:
      Identifier of the message being processed.
      -
  • -
  • -
    -

    setId

    -
    public void setId(String id)
    + + + + +
      +
    • +

      setId

      +
      public void setId​(String id)
      Sets the identifier of the message being processed.
      -
      -
      Parameters:
      +
      +
      Parameters:
      id - Identifier of the message being processed.
      -
  • -
  • -
    -

    getSource

    -
    public String getSource()
    + + + + +
      +
    • +

      getSource

      +
      public String getSource()
      Gets the event's source.
      -
      -
      Returns:
      +
      +
      Returns:
      Event's source.
      -
  • -
  • -
    -

    setSource

    -
    public void setSource(String source)
    + + + + +
      +
    • +

      setSource

      +
      public void setSource​(String source)
      Sets the event's source.
      -
      -
      Parameters:
      +
      +
      Parameters:
      source - Event's source.
      -
  • -
  • -
    -

    getType

    -
    public String getType()
    + + + + +
      +
    • +

      getType

      +
      public String getType()
      Gets the envelope type.
      -
      -
      Returns:
      +
      +
      Returns:
      Envelope type.
      -
  • -
  • -
    -

    setType

    -
    public void setType(String type)
    + + + + +
      +
    • +

      setType

      +
      public void setType​(String type)
      Sets the envelope type.
      -
      -
      Parameters:
      +
      +
      Parameters:
      type - Envelope type.
      -
  • -
  • -
    -

    getSpecversion

    -
    public String getSpecversion()
    + + + + +
      +
    • +

      getSpecversion

      +
      public String getSpecversion()
      Gets the version of the specification.
      -
      -
      Returns:
      +
      +
      Returns:
      Version of the specification.
      -
  • -
  • -
    -

    setSpecversion

    -
    public void setSpecversion(String specversion)
    + + + + +
      +
    • +

      setSpecversion

      +
      public void setSpecversion​(String specversion)
      Sets the version of the specification.
      -
      -
      Parameters:
      +
      +
      Parameters:
      specversion - Version of the specification.
      -
  • -
  • -
    -

    getDatacontenttype

    -
    public String getDatacontenttype()
    + + + + +
      +
    • +

      getDatacontenttype

      +
      public String getDatacontenttype()
      Gets the type of the data's content.
      -
      -
      Returns:
      +
      +
      Returns:
      Type of the data's content.
      -
  • -
  • -
    -

    setDatacontenttype

    -
    public void setDatacontenttype(String datacontenttype)
    + + + + +
      +
    • +

      setDatacontenttype

      +
      public void setDatacontenttype​(String datacontenttype)
      Sets the type of the data's content.
      -
      -
      Parameters:
      +
      +
      Parameters:
      datacontenttype - Type of the data's content.
      -
  • -
  • -
    -

    getData

    -
    public T getData()
    + + + + +
      +
    • +

      getData

      +
      public T getData()
      Gets the cloud event data.
      -
      -
      Returns:
      +
      +
      Returns:
      Cloud event's data. As per specs, data can be a JSON object or string.
      -
  • -
  • -
    -

    setData

    -
    public void setData(T data)
    + + + + + + +
      +
    • +

      setData

      +
      public void setData​(T data)
      Sets the cloud event data. As per specs, data can be a JSON object or string.
      -
      -
      Parameters:
      +
      +
      Parameters:
      data - Cloud event's data. As per specs, data can be a JSON object or string.
      -
  • -
  • -
    -

    getBinaryData

    -
    public byte[] getBinaryData()
    + + + + +
      +
    • +

      getBinaryData

      +
      public byte[] getBinaryData()
      Gets the cloud event's binary data.
      -
      -
      Returns:
      +
      +
      Returns:
      Cloud event's binary data.
      -
  • -
  • -
    -

    setBinaryData

    -
    public void setBinaryData(byte[] binaryData)
    + + + + +
      +
    • +

      setBinaryData

      +
      public void setBinaryData​(byte[] binaryData)
      Sets the cloud event's binary data.
      -
      -
      Parameters:
      +
      +
      Parameters:
      binaryData - Cloud event's binary data.
      -
  • -
  • -
    -

    equals

    -
    public boolean equals(Object o)
    -
    -
    Overrides:
    -
    equals in class Object
    + + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      -
  • -
  • -
    -

    hashCode

    -
    public int hashCode()
    -
    -
    Overrides:
    -
    hashCode in class Object
    + + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/ConfigurationItem.html b/docs/io/dapr/client/domain/ConfigurationItem.html index dfe177800..e675aa915 100644 --- a/docs/io/dapr/client/domain/ConfigurationItem.html +++ b/docs/io/dapr/client/domain/ConfigurationItem.html @@ -2,40 +2,59 @@ - -ConfigurationItem (dapr-sdk-parent 1.7.1 API) - + +ConfigurationItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ConfigurationItem

    + +

    Class ConfigurationItem

    -
    java.lang.Object -
    io.dapr.client.domain.ConfigurationItem
    -
    -
    +
    + +
    +
      +

    • -
      public class ConfigurationItem -extends Object
      +
      public class ConfigurationItem
      +extends Object
      A configuration item from Dapr's configuration store.
      -
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/DeleteStateRequest.html b/docs/io/dapr/client/domain/DeleteStateRequest.html index b98eaaf75..0eff798ea 100644 --- a/docs/io/dapr/client/domain/DeleteStateRequest.html +++ b/docs/io/dapr/client/domain/DeleteStateRequest.html @@ -2,40 +2,59 @@ - -DeleteStateRequest (dapr-sdk-parent 1.7.1 API) - + +DeleteStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DeleteStateRequest

    + +

    Class DeleteStateRequest

    -
    java.lang.Object -
    io.dapr.client.domain.DeleteStateRequest
    -
    -
    +
    + +
    +
      +

    • -
      public class DeleteStateRequest -extends Object
      +
      public class DeleteStateRequest
      +extends Object
      A request to delete a state by key.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/ExecuteStateTransactionRequest.html b/docs/io/dapr/client/domain/ExecuteStateTransactionRequest.html index 35fc635a7..9fa0110e7 100644 --- a/docs/io/dapr/client/domain/ExecuteStateTransactionRequest.html +++ b/docs/io/dapr/client/domain/ExecuteStateTransactionRequest.html @@ -2,40 +2,59 @@ - -ExecuteStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +ExecuteStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class ExecuteStateTransactionRequest

    + +

    Class ExecuteStateTransactionRequest

    -
    java.lang.Object -
    io.dapr.client.domain.ExecuteStateTransactionRequest
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.ExecuteStateTransactionRequest
      • +
      +
    • +
    +
    +
      +

    • -
      public class ExecuteStateTransactionRequest -extends Object
      +
      public class ExecuteStateTransactionRequest
      +extends Object
      A request for executing state transaction operations.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/GetBulkSecretRequest.html b/docs/io/dapr/client/domain/GetBulkSecretRequest.html index fbf386467..afc72ade1 100644 --- a/docs/io/dapr/client/domain/GetBulkSecretRequest.html +++ b/docs/io/dapr/client/domain/GetBulkSecretRequest.html @@ -2,40 +2,59 @@ - -GetBulkSecretRequest (dapr-sdk-parent 1.7.1 API) - + +GetBulkSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GetBulkSecretRequest

    + +

    Class GetBulkSecretRequest

    -
    java.lang.Object -
    io.dapr.client.domain.GetBulkSecretRequest
    -
    -
    +
    + +
    +
      +

    • -
      public class GetBulkSecretRequest -extends Object
      +
      public class GetBulkSecretRequest
      +extends Object
      A request to get a secret by key.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/GetBulkStateRequest.html b/docs/io/dapr/client/domain/GetBulkStateRequest.html index bda3ad5df..6bb6c8e2b 100644 --- a/docs/io/dapr/client/domain/GetBulkStateRequest.html +++ b/docs/io/dapr/client/domain/GetBulkStateRequest.html @@ -2,40 +2,59 @@ - -GetBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +GetBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GetBulkStateRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.GetBulkStateRequest
    + +

    Class GetBulkStateRequest

    -
    +
    + +
    +
      +

    • -
      public class GetBulkStateRequest -extends Object
      +
      public class GetBulkStateRequest
      +extends Object
      A request to get bulk state by keys.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/GetConfigurationRequest.html b/docs/io/dapr/client/domain/GetConfigurationRequest.html index 86ddfb022..3d4c0fdc6 100644 --- a/docs/io/dapr/client/domain/GetConfigurationRequest.html +++ b/docs/io/dapr/client/domain/GetConfigurationRequest.html @@ -2,40 +2,59 @@ - -GetConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +GetConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GetConfigurationRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.GetConfigurationRequest
    + +

    Class GetConfigurationRequest

    -
    +
    + +
    +
      +

    • -
      public class GetConfigurationRequest -extends Object
      +
      public class GetConfigurationRequest
      +extends Object
      Request to get one or more configuration items from Dapr's configuration store.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/GetSecretRequest.html b/docs/io/dapr/client/domain/GetSecretRequest.html index f93c171dc..96348a485 100644 --- a/docs/io/dapr/client/domain/GetSecretRequest.html +++ b/docs/io/dapr/client/domain/GetSecretRequest.html @@ -2,40 +2,59 @@ - -GetSecretRequest (dapr-sdk-parent 1.7.1 API) - + +GetSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GetSecretRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.GetSecretRequest
    + +

    Class GetSecretRequest

    -
    +
    + +
    +
      +

    • -
      public class GetSecretRequest -extends Object
      +
      public class GetSecretRequest
      +extends Object
      A request to get a secret by key.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/GetStateRequest.html b/docs/io/dapr/client/domain/GetStateRequest.html index c4fc788d6..ae4a5abce 100644 --- a/docs/io/dapr/client/domain/GetStateRequest.html +++ b/docs/io/dapr/client/domain/GetStateRequest.html @@ -2,40 +2,59 @@ - -GetStateRequest (dapr-sdk-parent 1.7.1 API) - + +GetStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GetStateRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.GetStateRequest
    + +

    Class GetStateRequest

    -
    +
    + +
    +
      +

    • -
      public class GetStateRequest -extends Object
      +
      public class GetStateRequest
      +extends Object
      A request to get a state by key.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/HttpExtension.html b/docs/io/dapr/client/domain/HttpExtension.html index 910bbb5ef..86673b714 100644 --- a/docs/io/dapr/client/domain/HttpExtension.html +++ b/docs/io/dapr/client/domain/HttpExtension.html @@ -2,40 +2,59 @@ - -HttpExtension (dapr-sdk-parent 1.7.1 API) - + +HttpExtension (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class HttpExtension

    -
    -
    java.lang.Object -
    io.dapr.client.domain.HttpExtension
    + +

    Class HttpExtension

    -
    +
    + +
    +
      +

    • -
      public final class HttpExtension -extends Object
      +
      public final class HttpExtension
      +extends Object
      HTTP Extension class. This class is only needed if the app you are calling is listening on HTTP. It contains properties that represent data that may be populated for an HTTP receiver.
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + - + + -
  • -
    -

    Constructor Details

    - + + + +
  • - - -
  • -
    -

    Method Details

    -
    + +
    +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        getHeaders

        +
        public Map<String,​String> getHeaders()
      • -
      • -
        -

        encodeQueryString

        -
        public String encodeQueryString()
        +
      + + + +
        +
      • +

        encodeQueryString

        +
        public String encodeQueryString()
        Encodes the query string for the HTTP request.
        -
        -
        Returns:
        +
        +
        Returns:
        Encoded HTTP query string.
        -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/InvokeBindingRequest.html b/docs/io/dapr/client/domain/InvokeBindingRequest.html index 7b2b1cff2..3a9945c47 100644 --- a/docs/io/dapr/client/domain/InvokeBindingRequest.html +++ b/docs/io/dapr/client/domain/InvokeBindingRequest.html @@ -2,40 +2,59 @@ - -InvokeBindingRequest (dapr-sdk-parent 1.7.1 API) - + +InvokeBindingRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class InvokeBindingRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.InvokeBindingRequest
    + +

    Class InvokeBindingRequest

    -
    +
    + +
    +
      +

    • -
      public class InvokeBindingRequest -extends Object
      +
      public class InvokeBindingRequest
      +extends Object
      A request to invoke binding.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/InvokeMethodRequest.html b/docs/io/dapr/client/domain/InvokeMethodRequest.html index 28d06c5f8..3fe04e0e6 100644 --- a/docs/io/dapr/client/domain/InvokeMethodRequest.html +++ b/docs/io/dapr/client/domain/InvokeMethodRequest.html @@ -2,40 +2,59 @@ - -InvokeMethodRequest (dapr-sdk-parent 1.7.1 API) - + +InvokeMethodRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class InvokeMethodRequest

    + +

    Class InvokeMethodRequest

    -
    java.lang.Object -
    io.dapr.client.domain.InvokeMethodRequest
    -
    -
    +
    + +
    +
      +

    • -
      public class InvokeMethodRequest -extends Object
      +
      public class InvokeMethodRequest
      +extends Object
      A request to invoke a service.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/Metadata.html b/docs/io/dapr/client/domain/Metadata.html index 2dfef3c1a..e39c0a460 100644 --- a/docs/io/dapr/client/domain/Metadata.html +++ b/docs/io/dapr/client/domain/Metadata.html @@ -2,36 +2,53 @@ - -Metadata (dapr-sdk-parent 1.7.1 API) - + +Metadata (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Metadata

    + +

    Class Metadata

    -
    java.lang.Object -
    io.dapr.client.domain.Metadata
    -
    -
    +
    + +
    +
      +

    • -
      public final class Metadata -extends Object
      +
      public final class Metadata
      +extends Object
      Enumerates commonly used metadata attributes.
      -
    -
    -
    - +
    +
    +
    +
      +
    • -
    • -
      -

      Field Details

      -
        -
      • -
        -

        CONTENT_TYPE

        -
        public static final String CONTENT_TYPE
        -
        -
        See Also:
        +
        +
      • -
      • -
        -

        TTL_IN_SECONDS

        -
        public static final String TTL_IN_SECONDS
        -
        -
        See Also:
        +
      + + + +
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/PublishEventRequest.html b/docs/io/dapr/client/domain/PublishEventRequest.html index 346fd4850..16a2e61f5 100644 --- a/docs/io/dapr/client/domain/PublishEventRequest.html +++ b/docs/io/dapr/client/domain/PublishEventRequest.html @@ -2,40 +2,59 @@ - -PublishEventRequest (dapr-sdk-parent 1.7.1 API) - + +PublishEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class PublishEventRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.PublishEventRequest
    + +

    Class PublishEventRequest

    -
    +
    + +
    +
      +

    • -
      public class PublishEventRequest -extends Object
      +
      public class PublishEventRequest
      +extends Object
      A request to publish an event.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/QueryStateItem.html b/docs/io/dapr/client/domain/QueryStateItem.html index 0418c62f3..a50ad6b26 100644 --- a/docs/io/dapr/client/domain/QueryStateItem.html +++ b/docs/io/dapr/client/domain/QueryStateItem.html @@ -2,40 +2,59 @@ - -QueryStateItem (dapr-sdk-parent 1.7.1 API) - + +QueryStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class QueryStateItem<T>

    + +

    Class QueryStateItem<T>

    -
    java.lang.Object -
    io.dapr.client.domain.QueryStateItem<T>
    -
    -
    +
    + +
    +
      +

    • -
      public class QueryStateItem<T> -extends Object
      -
    -
    -
      +
      public class QueryStateItem<T>
      +extends Object
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
      +
      + +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object o)
      -
       
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Constructor Details

        -
          -
        • -
          -

          QueryStateItem

          -
          public QueryStateItem(String key)
          +
          +
            +
          • + + +

            Constructor Detail

            + + + +
              +
            • +

              QueryStateItem

              +
              public QueryStateItem​(String key)
              Create an immutable state reference to be retrieved or deleted. This Constructor CAN be used anytime you need to retrieve or delete a state.
              -
              -
              Parameters:
              +
              +
              Parameters:
              key - - The key of the state
              -
        • -
        • -
          -

          QueryStateItem

          -
          public QueryStateItem(String key, - String etag, - String error)
          +
        + + + +
          +
        • +

          QueryStateItem

          +
          public QueryStateItem​(String key,
          +                      String etag,
          +                      String error)
          Create an immutable state reference to be retrieved or deleted. This Constructor CAN be used anytime you need to retrieve or delete a state.
          -
          -
          Parameters:
          +
          +
          Parameters:
          key - - The key of the state
          etag - - The etag of the state - Keep in mind that for some state stores (like redis) only numbers are supported.
          error - - Error when fetching the state.
          -
      • -
      • -
        -

        QueryStateItem

        -
        public QueryStateItem(String key, - T value, - String etag)
        +
      + + + + + +
        +
      • +

        QueryStateItem

        +
        public QueryStateItem​(String key,
        +                      T value,
        +                      String etag)
        Create an immutable state. This Constructor CAN be used anytime you want the state to be saved.
        -
        -
        Parameters:
        +
        +
        Parameters:
        key - - The key of the state.
        value - - The value of the state.
        etag - - The etag of the state - for some state stores (like redis) only numbers are supported.
        -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getValue

      -
      public T getValue()
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getValue

          +
          public T getValue()
          Retrieves the Value of the state.
          -
          -
          Returns:
          +
          +
          Returns:
          The value of the state
          -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
      Retrieves the Key of the state.
      -
      -
      Returns:
      +
      +
      Returns:
      The key of the state
      -
  • -
  • -
    -

    getEtag

    -
    public String getEtag()
    + + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
      Retrieve the ETag of this state.
      -
      -
      Returns:
      +
      +
      Returns:
      The etag of the state
      -
  • -
  • -
    -

    getError

    -
    public String getError()
    + + + + +
      +
    • +

      getError

      +
      public String getError()
      Retrieve the error for this state.
      -
      -
      Returns:
      +
      +
      Returns:
      The error for this state.
      -
  • -
  • -
    -

    equals

    -
    public boolean equals(Object o)
    -
    -
    Overrides:
    -
    equals in class Object
    + + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      -
  • -
  • -
    -

    hashCode

    -
    public int hashCode()
    -
    -
    Overrides:
    -
    hashCode in class Object
    + + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      -
  • -
  • -
    -

    toString

    -
    public String toString()
    -
    -
    Overrides:
    -
    toString in class Object
    + + + + +
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/QueryStateRequest.html b/docs/io/dapr/client/domain/QueryStateRequest.html index 4aa4d9df3..26150caa0 100644 --- a/docs/io/dapr/client/domain/QueryStateRequest.html +++ b/docs/io/dapr/client/domain/QueryStateRequest.html @@ -2,40 +2,59 @@ - -QueryStateRequest (dapr-sdk-parent 1.7.1 API) - + +QueryStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class QueryStateRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.QueryStateRequest
    + +

    Class QueryStateRequest

    -
    -
    -
    public class QueryStateRequest -extends Object
    -
    -
    -
      - +
      + +
      +
        +
      • +
        +
        public class QueryStateRequest
        +extends Object
        +
      • +
      -
    +
    + - + + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/QueryStateResponse.html b/docs/io/dapr/client/domain/QueryStateResponse.html index 4a80d6ff3..118e0257d 100644 --- a/docs/io/dapr/client/domain/QueryStateResponse.html +++ b/docs/io/dapr/client/domain/QueryStateResponse.html @@ -2,40 +2,59 @@ - -QueryStateResponse (dapr-sdk-parent 1.7.1 API) - + +QueryStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class QueryStateResponse<T>

    + +

    Class QueryStateResponse<T>

    -
    java.lang.Object -
    io.dapr.client.domain.QueryStateResponse<T>
    -
    -
    -
    -
    public class QueryStateResponse<T> -extends Object
    -
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/SaveStateRequest.html b/docs/io/dapr/client/domain/SaveStateRequest.html index 4455d883a..978d51f8d 100644 --- a/docs/io/dapr/client/domain/SaveStateRequest.html +++ b/docs/io/dapr/client/domain/SaveStateRequest.html @@ -2,40 +2,59 @@ - -SaveStateRequest (dapr-sdk-parent 1.7.1 API) - + +SaveStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -
    +
    - -

    Class SaveStateRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.SaveStateRequest
    + +

    Class SaveStateRequest

    -
    +
    + +
    +
      +

    • -
      public class SaveStateRequest -extends Object
      +
      public class SaveStateRequest
      +extends Object
      A request to save states to state store.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/State.html b/docs/io/dapr/client/domain/State.html index 050db8359..d0a312882 100644 --- a/docs/io/dapr/client/domain/State.html +++ b/docs/io/dapr/client/domain/State.html @@ -2,40 +2,59 @@ - -State (dapr-sdk-parent 1.7.1 API) - + +State (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class State<T>

    + +

    Class State<T>

    -
    java.lang.Object -
    io.dapr.client.domain.State<T>
    -
    -
    -
    -
    Type Parameters:
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      T - The type of the value of the sate

      -
      public class State<T> -extends Object
      +
      public class State<T>
      +extends Object
      This class reprent what a State is.
      -
    -
    -
      + +
    +
    +
    + + + + + + +
      +
    • +

      State

      +
      public State​(String key,
      +             T value,
      +             String etag,
      +             Map<String,​String> metadata,
      +             StateOptions options)
      Create an immutable state. This Constructor CAN be used anytime you want the state to be saved.
      -
      -
      Parameters:
      +
      +
      Parameters:
      key - - The key of the state.
      value - - The value of the state.
      etag - - The etag of the state - for some state stores (like redis) only numbers are supported.
      metadata - - The metadata of the state.
      options - - REQUIRED when saving a state.
      -
    • -
    • -
      -

      State

      -
      public State(String key, - T value, - String etag)
      +
    + + + + + +
      +
    • +

      State

      +
      public State​(String key,
      +             T value,
      +             String etag)
      Create an immutable state. This Constructor CAN be used anytime you want the state to be saved.
      -
      -
      Parameters:
      +
      +
      Parameters:
      key - - The key of the state.
      value - - The value of the state.
      etag - - The etag of the state - some state stores (like redis) only numbers are supported.
      -
    • -
    • -
      -

      State

      -
      public State(String key, - String error)
      +
    + + + +
      +
    • +

      State

      +
      public State​(String key,
      +             String error)
      Create an immutable state. This Constructor MUST be used anytime the key could not be retrieved and contains an error.
      -
      -
      Parameters:
      +
      +
      Parameters:
      key - - The key of the state.
      error - - Error when fetching the state.
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getValue

      -
      public T getValue()
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getValue

          +
          public T getValue()
          Retrieves the Value of the state.
          -
          -
          Returns:
          +
          +
          Returns:
          The value of the state
          -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
      Retrieves the Key of the state.
      -
      -
      Returns:
      +
      +
      Returns:
      The key of the state
      -
  • -
  • -
    -

    getEtag

    -
    public String getEtag()
    + + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
      Retrieve the ETag of this state.
      -
      -
      Returns:
      +
      +
      Returns:
      The etag of the state
      -
  • -
  • -
    -

    getMetadata

    -
    public Map<String,​String> getMetadata()
    + + + + +
      +
    • +

      getMetadata

      +
      public Map<String,​String> getMetadata()
      Retrieve the metadata of this state.
      -
      -
      Returns:
      +
      +
      Returns:
      the metadata of this state
      -
  • -
  • -
    -

    getError

    -
    public String getError()
    + + + + +
      +
    • +

      getError

      +
      public String getError()
      Retrieve the error for this state.
      -
      -
      Returns:
      +
      +
      Returns:
      The error for this state.
      -
  • -
  • -
    -

    getOptions

    -
    public StateOptions getOptions()
    + + + + +
      +
    • +

      getOptions

      +
      public StateOptions getOptions()
      Retrieve the Options used for saving the state.
      -
      -
      Returns:
      +
      +
      Returns:
      The options to save the state
      -
  • -
  • -
    -

    equals

    -
    public boolean equals(Object o)
    -
    -
    Overrides:
    -
    equals in class Object
    + + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      -
  • -
  • -
    -

    hashCode

    -
    public int hashCode()
    -
    -
    Overrides:
    -
    hashCode in class Object
    + + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Overrides:
      +
      hashCode in class Object
      -
  • -
  • -
    -

    toString

    -
    public String toString()
    -
    -
    Overrides:
    -
    toString in class Object
    + + + + +
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/StateOptions.Concurrency.html b/docs/io/dapr/client/domain/StateOptions.Concurrency.html index b23d374f4..1d75bca35 100644 --- a/docs/io/dapr/client/domain/StateOptions.Concurrency.html +++ b/docs/io/dapr/client/domain/StateOptions.Concurrency.html @@ -2,40 +2,59 @@ - -StateOptions.Concurrency (dapr-sdk-parent 1.7.1 API) - + +StateOptions.Concurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class StateOptions.Concurrency

    -
    -
    java.lang.Object -
    java.lang.Enum<StateOptions.Concurrency> -
    io.dapr.client.domain.StateOptions.Concurrency
    + +

    Enum StateOptions.Concurrency

    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
       
      - -
       
      +
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/StateOptions.Consistency.html b/docs/io/dapr/client/domain/StateOptions.Consistency.html index 69205fd80..7978f964f 100644 --- a/docs/io/dapr/client/domain/StateOptions.Consistency.html +++ b/docs/io/dapr/client/domain/StateOptions.Consistency.html @@ -2,40 +2,59 @@ - -StateOptions.Consistency (dapr-sdk-parent 1.7.1 API) - + +StateOptions.Consistency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class StateOptions.Consistency

    -
    -
    java.lang.Object -
    java.lang.Enum<StateOptions.Consistency> -
    io.dapr.client.domain.StateOptions.Consistency
    + +

    Enum StateOptions.Consistency

    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
       
      - -
       
      +
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/StateOptions.StateOptionDurationDeserializer.html b/docs/io/dapr/client/domain/StateOptions.StateOptionDurationDeserializer.html index ea6d96f2a..4a86cbeb6 100644 --- a/docs/io/dapr/client/domain/StateOptions.StateOptionDurationDeserializer.html +++ b/docs/io/dapr/client/domain/StateOptions.StateOptionDurationDeserializer.html @@ -2,40 +2,59 @@ - -StateOptions.StateOptionDurationDeserializer (dapr-sdk-parent 1.7.1 API) - + +StateOptions.StateOptionDurationDeserializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class StateOptions.StateOptionDurationDeserializer

    -
    -
    java.lang.Object -
    com.fasterxml.jackson.databind.JsonDeserializer<T> -
    com.fasterxml.jackson.databind.deser.std.StdDeserializer<Duration> -
    io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
    -
    -
    + +

    Class StateOptions.StateOptionDurationDeserializer

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.fasterxml.jackson.databind.JsonDeserializer<T>
      • +
      • +
          +
        • com.fasterxml.jackson.databind.deser.std.StdDeserializer<Duration>
        • +
        • +
            +
          • io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.fasterxml.jackson.databind.deser.NullValueProvider, com.fasterxml.jackson.databind.deser.ValueInstantiator.Gettable, Serializable
      +
      com.fasterxml.jackson.databind.deser.NullValueProvider, com.fasterxml.jackson.databind.deser.ValueInstantiator.Gettable, Serializable
      -
      +
      Enclosing class:
      StateOptions

      -
      public static class StateOptions.StateOptionDurationDeserializer -extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Duration>
      -
      -
      See Also:
      +
      public static class StateOptions.StateOptionDurationDeserializer
      +extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Duration>
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonDeserializer

      -com.fasterxml.jackson.databind.JsonDeserializer.None
      -
      +
      +
        +
      • + + +

        Nested Class Summary

        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonDeserializer

          +com.fasterxml.jackson.databind.JsonDeserializer.None
        • +
      • - -
      • -
        -

        Field Summary

        -
        -

        Fields inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer

        -_valueClass, _valueType, F_MASK_ACCEPT_ARRAYS, F_MASK_INT_COERCIONS
        +
      + +
      +
        +
      • + + +

        Field Summary

        +
          +
        • + + +

          Fields inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer

          +_valueClass, _valueType, F_MASK_ACCEPT_ARRAYS, F_MASK_INT_COERCIONS
        • +
      • - -
      • -
        -

        Constructor Summary

        -
        Constructors
        -
        -
        Constructor
        -
        Description
        - -
         
        -
        +
      + +
      +
        +
      • + + +

        Constructor Summary

        + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        StateOptionDurationDeserializer​(Class<?> vc) 
      • - -
      • -
        -

        Method Summary

        -
        -
        -
        -
        -
        Modifier and Type
        -
        Method
        -
        Description
        - -
        deserialize​(com.fasterxml.jackson.core.JsonParser jsonParser, - com.fasterxml.jackson.databind.DeserializationContext deserializationContext)
        -
         
        -
        -
        -
        -
        -

        Methods inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer

        -_byteOverflow, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkTextualNull, _coerceBooleanFromInt, _coercedTypeDesc, _coerceEmptyString, _coerceIntegral, _coerceNullToken, _coerceTextualNull, _deserializeFromArray, _deserializeFromEmpty, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _failDoubleToIntCoercion, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isEmptyOrTextualNull, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanFromInt, _parseBooleanPrimitive, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _verifyNullForScalarCoercion, _verifyNumberForScalarCoercion, _verifyStringForScalarCoercion, deserializeWithType, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueClass, getValueInstantiator, getValueType, getValueType, handledType, handleMissingEndArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer
        -
        -

        Methods inherited from class com.fasterxml.jackson.databind.JsonDeserializer

        -deserialize, deserializeWithType, findBackReference, getDelegatee, getEmptyAccessPattern, getEmptyValue, getEmptyValue, getKnownPropertyNames, getNullAccessPattern, getNullValue, getNullValue, getObjectIdReader, isCachable, logicalType, replaceDelegatee, supportsUpdate, unwrappingDeserializer
        -
        -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        +
      + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Concrete Methods 
        Modifier and TypeMethodDescription
        Durationdeserialize​(com.fasterxml.jackson.core.JsonParser jsonParser, + com.fasterxml.jackson.databind.DeserializationContext deserializationContext) 
        +
          +
        • + + +

          Methods inherited from class com.fasterxml.jackson.databind.deser.std.StdDeserializer

          +_byteOverflow, _checkCoercionFail, _checkDoubleSpecialValue, _checkFloatSpecialValue, _checkFloatToIntCoercion, _checkFromStringCoercion, _checkFromStringCoercion, _checkTextualNull, _coerceBooleanFromInt, _coercedTypeDesc, _coerceEmptyString, _coerceIntegral, _coerceNullToken, _coerceTextualNull, _deserializeFromArray, _deserializeFromEmpty, _deserializeFromEmptyString, _deserializeFromString, _deserializeWrappedValue, _failDoubleToIntCoercion, _findCoercionFromBlankString, _findCoercionFromEmptyArray, _findCoercionFromEmptyString, _findNullProvider, _hasTextualNull, _intOverflow, _isBlank, _isEmptyOrTextualNull, _isFalse, _isIntNumber, _isNaN, _isNegInf, _isPosInf, _isTrue, _neitherNull, _nonNullNumber, _parseBoolean, _parseBooleanFromInt, _parseBooleanPrimitive, _parseBooleanPrimitive, _parseBytePrimitive, _parseDate, _parseDate, _parseDateFromArray, _parseDouble, _parseDoublePrimitive, _parseDoublePrimitive, _parseFloatPrimitive, _parseFloatPrimitive, _parseInteger, _parseInteger, _parseIntPrimitive, _parseIntPrimitive, _parseLong, _parseLong, _parseLongPrimitive, _parseLongPrimitive, _parseShortPrimitive, _parseString, _reportFailedNullCoerce, _shortOverflow, _verifyEndArrayForSingle, _verifyNullForPrimitive, _verifyNullForPrimitiveCoercion, _verifyNullForScalarCoercion, _verifyNumberForScalarCoercion, _verifyStringForScalarCoercion, deserializeWithType, findContentNullProvider, findContentNullStyle, findConvertingContentDeserializer, findDeserializer, findFormatFeature, findFormatOverrides, findValueNullProvider, getValueClass, getValueInstantiator, getValueType, getValueType, handledType, handleMissingEndArrayForSingle, handleNestedArrayForSingle, handleUnknownProperty, isDefaultDeserializer, isDefaultKeyDeserializer
        • +
        +
          +
        • + + +

          Methods inherited from class com.fasterxml.jackson.databind.JsonDeserializer

          +deserialize, deserializeWithType, findBackReference, getAbsentValue, getDelegatee, getEmptyAccessPattern, getEmptyValue, getEmptyValue, getKnownPropertyNames, getNullAccessPattern, getNullValue, getNullValue, getObjectIdReader, isCachable, logicalType, replaceDelegatee, supportsUpdate, unwrappingDeserializer
        • +
        +
      -
      -
        + +
      +
    +
    +
      +
    • -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        StateOptionDurationDeserializer

        -
        public StateOptionDurationDeserializer(Class<?> vc)
        -
        +
        +
          +
        • + + +

          Constructor Detail

          + + + +
            +
          • +

            StateOptionDurationDeserializer

            +
            public StateOptionDurationDeserializer​(Class<?> vc)
          -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        deserialize

        -
        public Duration deserialize(com.fasterxml.jackson.core.JsonParser jsonParser, - com.fasterxml.jackson.databind.DeserializationContext deserializationContext) - throws IOException
        -
        -
        Specified by:
        -
        deserialize in class com.fasterxml.jackson.databind.JsonDeserializer<Duration>
        -
        Throws:
        -
        IOException
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            deserialize

            +
            public Duration deserialize​(com.fasterxml.jackson.core.JsonParser jsonParser,
            +                            com.fasterxml.jackson.databind.DeserializationContext deserializationContext)
            +                     throws IOException
            +
            +
            Specified by:
            +
            deserialize in class com.fasterxml.jackson.databind.JsonDeserializer<Duration>
            +
            Throws:
            +
            IOException
            -
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/StateOptions.StateOptionDurationSerializer.html b/docs/io/dapr/client/domain/StateOptions.StateOptionDurationSerializer.html index fd779e43a..bc7a79fdc 100644 --- a/docs/io/dapr/client/domain/StateOptions.StateOptionDurationSerializer.html +++ b/docs/io/dapr/client/domain/StateOptions.StateOptionDurationSerializer.html @@ -2,40 +2,59 @@ - -StateOptions.StateOptionDurationSerializer (dapr-sdk-parent 1.7.1 API) - + +StateOptions.StateOptionDurationSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class StateOptions.StateOptionDurationSerializer

    + +

    Class StateOptions.StateOptionDurationSerializer

    -
    java.lang.Object -
    com.fasterxml.jackson.databind.JsonSerializer<T> -
    com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration> -
    io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.fasterxml.jackson.databind.JsonSerializer<T>
      • +
      • +
          +
        • com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration>
        • +
        • +
            +
          • io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, com.fasterxml.jackson.databind.jsonschema.SchemaAware, Serializable
      +
      com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitable, com.fasterxml.jackson.databind.jsonschema.SchemaAware, Serializable
      -
      +
      Enclosing class:
      StateOptions

      -
      public static class StateOptions.StateOptionDurationSerializer -extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration>
      -
      -
      See Also:
      +
      public static class StateOptions.StateOptionDurationSerializer
      +extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration>
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer

      -com.fasterxml.jackson.databind.JsonSerializer.None
      -
      +
      +
        +
      • + + +

        Nested Class Summary

        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer

          +com.fasterxml.jackson.databind.JsonSerializer.None
        • +
      • - -
      • -
        -

        Field Summary

        -
        -

        Fields inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer

        -_handledType
        +
      + +
      +
      + +
      +
        +
      • + + +

        Constructor Summary

        + + + + + + + + + + + + + + +
        Constructors 
        ConstructorDescription
        StateOptionDurationSerializer() 
        StateOptionDurationSerializer​(Class<Duration> t) 
      • - -
      • -
        -

        Method Summary

        -
        -
        -
        -
        -
        Modifier and Type
        -
        Method
        -
        Description
        -
        void
        -
        serialize​(Duration duration, - com.fasterxml.jackson.core.JsonGenerator jsonGenerator, - com.fasterxml.jackson.databind.SerializerProvider serializerProvider)
        -
         
        -
        -
        -
        -
        -

        Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer

        -_neitherNull, _nonEmpty, acceptJsonFormatVisitor, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
        -
        -

        Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer

        -getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId
        -
        -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        +
      + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Concrete Methods 
        Modifier and TypeMethodDescription
        voidserialize​(Duration duration, + com.fasterxml.jackson.core.JsonGenerator jsonGenerator, + com.fasterxml.jackson.databind.SerializerProvider serializerProvider) 
        +
          +
        • + + +

          Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer

          +_neitherNull, _nonEmpty, acceptJsonFormatVisitor, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
        • +
        +
          +
        • + + +

          Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer

          +getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, serializeWithType, unwrappingSerializer, usesObjectId, withFilterId
        • +
        +
      -
      -
        + +
      +
    +
    +
      +
    • -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        StateOptionDurationSerializer

        -
        public StateOptionDurationSerializer()
        -
        +
        +
          +
        • + + +

          Constructor Detail

          + + + +
            +
          • +

            StateOptionDurationSerializer

            +
            public StateOptionDurationSerializer()
          • -
          • -
            -

            StateOptionDurationSerializer

            -
            public StateOptionDurationSerializer(Class<Duration> t)
            -
            +
          + + + +
            +
          • +

            StateOptionDurationSerializer

            +
            public StateOptionDurationSerializer​(Class<Duration> t)
          -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        serialize

        -
        public void serialize(Duration duration, - com.fasterxml.jackson.core.JsonGenerator jsonGenerator, - com.fasterxml.jackson.databind.SerializerProvider serializerProvider) - throws IOException
        -
        -
        Specified by:
        -
        serialize in class com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration>
        -
        Throws:
        -
        IOException
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            serialize

            +
            public void serialize​(Duration duration,
            +                      com.fasterxml.jackson.core.JsonGenerator jsonGenerator,
            +                      com.fasterxml.jackson.databind.SerializerProvider serializerProvider)
            +               throws IOException
            +
            +
            Specified by:
            +
            serialize in class com.fasterxml.jackson.databind.ser.std.StdSerializer<Duration>
            +
            Throws:
            +
            IOException
            -
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/StateOptions.html b/docs/io/dapr/client/domain/StateOptions.html index a58ae80f5..c10e69146 100644 --- a/docs/io/dapr/client/domain/StateOptions.html +++ b/docs/io/dapr/client/domain/StateOptions.html @@ -2,40 +2,59 @@ - -StateOptions (dapr-sdk-parent 1.7.1 API) - + +StateOptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class StateOptions

    + +

    Class StateOptions

    -
    java.lang.Object -
    io.dapr.client.domain.StateOptions
    -
    -
    +
    + +
    +
      +

    • -
      public class StateOptions -extends Object
      +
      public class StateOptions
      +extends Object
      A class representing the state options for Dapr state API.
      -
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/SubscribeConfigurationRequest.html b/docs/io/dapr/client/domain/SubscribeConfigurationRequest.html index 5926a31fa..5e9a929d8 100644 --- a/docs/io/dapr/client/domain/SubscribeConfigurationRequest.html +++ b/docs/io/dapr/client/domain/SubscribeConfigurationRequest.html @@ -2,40 +2,59 @@ - -SubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +SubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class SubscribeConfigurationRequest

    -
    -
    java.lang.Object -
    io.dapr.client.domain.SubscribeConfigurationRequest
    + +

    Class SubscribeConfigurationRequest

    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.SubscribeConfigurationRequest
      • +
      +
    • +
    +
    +
      +

    • -
      public class SubscribeConfigurationRequest -extends Object
      +
      public class SubscribeConfigurationRequest
      +extends Object
      Request to subscribe to one or more configuration items.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/SubscribeConfigurationResponse.html b/docs/io/dapr/client/domain/SubscribeConfigurationResponse.html index 65fb9a1f6..7d486eead 100644 --- a/docs/io/dapr/client/domain/SubscribeConfigurationResponse.html +++ b/docs/io/dapr/client/domain/SubscribeConfigurationResponse.html @@ -2,40 +2,59 @@ - -SubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +SubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class SubscribeConfigurationResponse

    + +

    Class SubscribeConfigurationResponse

    -
    java.lang.Object -
    io.dapr.client.domain.SubscribeConfigurationResponse
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.SubscribeConfigurationResponse
      • +
      +
    • +
    +
    +
      +

    • -
      public class SubscribeConfigurationResponse -extends Object
      +
      public class SubscribeConfigurationResponse
      +extends Object
      Domain object for response from subscribeConfiguration API.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/TransactionalStateOperation.OperationType.html b/docs/io/dapr/client/domain/TransactionalStateOperation.OperationType.html index 7df2c8276..8a90986e8 100644 --- a/docs/io/dapr/client/domain/TransactionalStateOperation.OperationType.html +++ b/docs/io/dapr/client/domain/TransactionalStateOperation.OperationType.html @@ -2,40 +2,59 @@ - -TransactionalStateOperation.OperationType (dapr-sdk-parent 1.7.1 API) - + +TransactionalStateOperation.OperationType (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class TransactionalStateOperation.OperationType

    -
    -
    java.lang.Object -
    java.lang.Enum<TransactionalStateOperation.OperationType> -
    io.dapr.client.domain.TransactionalStateOperation.OperationType
    -
    + +

    Enum TransactionalStateOperation.OperationType

    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
       
      - -
       
      +
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/TransactionalStateOperation.html b/docs/io/dapr/client/domain/TransactionalStateOperation.html index 3706d9ae4..84ae3d35f 100644 --- a/docs/io/dapr/client/domain/TransactionalStateOperation.html +++ b/docs/io/dapr/client/domain/TransactionalStateOperation.html @@ -2,40 +2,59 @@ - -TransactionalStateOperation (dapr-sdk-parent 1.7.1 API) - + +TransactionalStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class TransactionalStateOperation<T>

    -
    -
    java.lang.Object -
    io.dapr.client.domain.TransactionalStateOperation<T>
    + +

    Class TransactionalStateOperation<T>

    -
    -
    -
    Type Parameters:
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.TransactionalStateOperation<T>
      • +
      +
    • +
    +
    +
      +
    • +
      +
      Type Parameters:
      T - Type of the state value

      -
      public class TransactionalStateOperation<T> -extends Object
      +
      public class TransactionalStateOperation<T>
      +extends Object
      Class to represent transactional state operations.
      -
    -
    -
      + +
    +
    +
    + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/TransactionalStateRequest.html b/docs/io/dapr/client/domain/TransactionalStateRequest.html index 4e47246a5..d9d87653f 100644 --- a/docs/io/dapr/client/domain/TransactionalStateRequest.html +++ b/docs/io/dapr/client/domain/TransactionalStateRequest.html @@ -2,40 +2,59 @@ - -TransactionalStateRequest (dapr-sdk-parent 1.7.1 API) - + +TransactionalStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class TransactionalStateRequest<T>

    + +

    Class TransactionalStateRequest<T>

    -
    java.lang.Object -
    io.dapr.client.domain.TransactionalStateRequest<T>
    -
    -
    -
    -
    Type Parameters:
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.TransactionalStateRequest<T>
      • +
      +
    • +
    +
    +
      +
    • +
      +
      Type Parameters:
      T - Type of state value in TransactionalStateOperation

      -
      public class TransactionalStateRequest<T> -extends Object
      +
      public class TransactionalStateRequest<T>
      +extends Object
      A class to represent request for transactional state.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/UnsubscribeConfigurationRequest.html b/docs/io/dapr/client/domain/UnsubscribeConfigurationRequest.html index af83a27df..269807a12 100644 --- a/docs/io/dapr/client/domain/UnsubscribeConfigurationRequest.html +++ b/docs/io/dapr/client/domain/UnsubscribeConfigurationRequest.html @@ -2,40 +2,59 @@ - -UnsubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +UnsubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class UnsubscribeConfigurationRequest

    + +

    Class UnsubscribeConfigurationRequest

    -
    java.lang.Object -
    io.dapr.client.domain.UnsubscribeConfigurationRequest
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.UnsubscribeConfigurationRequest
      • +
      +
    • +
    +
    +
      +

    • -
      public class UnsubscribeConfigurationRequest -extends Object
      +
      public class UnsubscribeConfigurationRequest
      +extends Object
      Request to unsubscribe to one or more configuration items using subscription id.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/UnsubscribeConfigurationResponse.html b/docs/io/dapr/client/domain/UnsubscribeConfigurationResponse.html index d166ffbef..16a3ed142 100644 --- a/docs/io/dapr/client/domain/UnsubscribeConfigurationResponse.html +++ b/docs/io/dapr/client/domain/UnsubscribeConfigurationResponse.html @@ -2,40 +2,59 @@ - -UnsubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +UnsubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class UnsubscribeConfigurationResponse

    + +

    Class UnsubscribeConfigurationResponse

    -
    java.lang.Object -
    io.dapr.client.domain.UnsubscribeConfigurationResponse
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.client.domain.UnsubscribeConfigurationResponse
      • +
      +
    • +
    +
    +
      +

    • -
      public class UnsubscribeConfigurationResponse -extends Object
      +
      public class UnsubscribeConfigurationResponse
      +extends Object
      Domain object for unsubscribe response.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/BulkPublishEntry.html b/docs/io/dapr/client/domain/class-use/BulkPublishEntry.html new file mode 100644 index 000000000..7446fad60 --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkPublishEntry.html @@ -0,0 +1,251 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkPublishEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkPublishEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkPublishRequest.html b/docs/io/dapr/client/domain/class-use/BulkPublishRequest.html new file mode 100644 index 000000000..13508b577 --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkPublishRequest.html @@ -0,0 +1,237 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkPublishRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkPublishRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkPublishResponse.html b/docs/io/dapr/client/domain/class-use/BulkPublishResponse.html new file mode 100644 index 000000000..8967e339f --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkPublishResponse.html @@ -0,0 +1,253 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkPublishResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkPublishResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkPublishResponseFailedEntry.html b/docs/io/dapr/client/domain/class-use/BulkPublishResponseFailedEntry.html new file mode 100644 index 000000000..a6a25a3da --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkPublishResponseFailedEntry.html @@ -0,0 +1,209 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkPublishResponseFailedEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkPublishResponseFailedEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponse.html b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponse.html new file mode 100644 index 000000000..6eb1f5792 --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponse.html @@ -0,0 +1,150 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkSubscribeAppResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkSubscribeAppResponse

    +
    +
    No usage of io.dapr.client.domain.BulkSubscribeAppResponse
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseEntry.html b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseEntry.html new file mode 100644 index 000000000..065212ca5 --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseEntry.html @@ -0,0 +1,209 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkSubscribeAppResponseEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkSubscribeAppResponseEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseStatus.html b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseStatus.html new file mode 100644 index 000000000..1fc1d8633 --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkSubscribeAppResponseStatus.html @@ -0,0 +1,225 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkSubscribeAppResponseStatus (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkSubscribeAppResponseStatus

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkSubscribeMessage.html b/docs/io/dapr/client/domain/class-use/BulkSubscribeMessage.html new file mode 100644 index 000000000..1bc67c71e --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkSubscribeMessage.html @@ -0,0 +1,150 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkSubscribeMessage (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkSubscribeMessage

    +
    +
    No usage of io.dapr.client.domain.BulkSubscribeMessage
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/BulkSubscribeMessageEntry.html b/docs/io/dapr/client/domain/class-use/BulkSubscribeMessageEntry.html new file mode 100644 index 000000000..57a2d57fd --- /dev/null +++ b/docs/io/dapr/client/domain/class-use/BulkSubscribeMessageEntry.html @@ -0,0 +1,211 @@ + + + + + +Uses of Class io.dapr.client.domain.BulkSubscribeMessageEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.client.domain.BulkSubscribeMessageEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/client/domain/class-use/CloudEvent.html b/docs/io/dapr/client/domain/class-use/CloudEvent.html index bac8b1063..f463df2f7 100644 --- a/docs/io/dapr/client/domain/class-use/CloudEvent.html +++ b/docs/io/dapr/client/domain/class-use/CloudEvent.html @@ -2,92 +2,195 @@ - -Uses of Class io.dapr.client.domain.CloudEvent (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.CloudEvent (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.CloudEvent

    -
    -
    Packages that use CloudEvent
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.CloudEvent

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/ConfigurationItem.html b/docs/io/dapr/client/domain/class-use/ConfigurationItem.html index 4794cfff2..862c09755 100644 --- a/docs/io/dapr/client/domain/class-use/ConfigurationItem.html +++ b/docs/io/dapr/client/domain/class-use/ConfigurationItem.html @@ -2,156 +2,286 @@ - -Uses of Class io.dapr.client.domain.ConfigurationItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.ConfigurationItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.ConfigurationItem

    -
    -
    Packages that use ConfigurationItem
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.ConfigurationItem

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/DeleteStateRequest.html b/docs/io/dapr/client/domain/class-use/DeleteStateRequest.html index fbf83c2de..d34d64408 100644 --- a/docs/io/dapr/client/domain/class-use/DeleteStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/DeleteStateRequest.html @@ -2,124 +2,246 @@ - -Uses of Class io.dapr.client.domain.DeleteStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.DeleteStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.DeleteStateRequest

    -
    -
    Packages that use DeleteStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.DeleteStateRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/ExecuteStateTransactionRequest.html b/docs/io/dapr/client/domain/class-use/ExecuteStateTransactionRequest.html index 6a2287a49..d43609261 100644 --- a/docs/io/dapr/client/domain/class-use/ExecuteStateTransactionRequest.html +++ b/docs/io/dapr/client/domain/class-use/ExecuteStateTransactionRequest.html @@ -2,121 +2,241 @@ - -Uses of Class io.dapr.client.domain.ExecuteStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.ExecuteStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.ExecuteStateTransactionRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.ExecuteStateTransactionRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/GetBulkSecretRequest.html b/docs/io/dapr/client/domain/class-use/GetBulkSecretRequest.html index 37f68123a..400c442ed 100644 --- a/docs/io/dapr/client/domain/class-use/GetBulkSecretRequest.html +++ b/docs/io/dapr/client/domain/class-use/GetBulkSecretRequest.html @@ -2,118 +2,236 @@ - -Uses of Class io.dapr.client.domain.GetBulkSecretRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.GetBulkSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.GetBulkSecretRequest

    -
    -
    Packages that use GetBulkSecretRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.GetBulkSecretRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/GetBulkStateRequest.html b/docs/io/dapr/client/domain/class-use/GetBulkStateRequest.html index e833af5d1..2aa49aef5 100644 --- a/docs/io/dapr/client/domain/class-use/GetBulkStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/GetBulkStateRequest.html @@ -2,124 +2,244 @@ - -Uses of Class io.dapr.client.domain.GetBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.GetBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.GetBulkStateRequest

    -
    -
    Packages that use GetBulkStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.GetBulkStateRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/GetConfigurationRequest.html b/docs/io/dapr/client/domain/class-use/GetConfigurationRequest.html index 77b7ce6ba..990be13c6 100644 --- a/docs/io/dapr/client/domain/class-use/GetConfigurationRequest.html +++ b/docs/io/dapr/client/domain/class-use/GetConfigurationRequest.html @@ -2,118 +2,236 @@ - -Uses of Class io.dapr.client.domain.GetConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.GetConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.GetConfigurationRequest

    -
    -
    Packages that use GetConfigurationRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.GetConfigurationRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/GetSecretRequest.html b/docs/io/dapr/client/domain/class-use/GetSecretRequest.html index 35a0cad79..52f461e09 100644 --- a/docs/io/dapr/client/domain/class-use/GetSecretRequest.html +++ b/docs/io/dapr/client/domain/class-use/GetSecretRequest.html @@ -2,118 +2,236 @@ - -Uses of Class io.dapr.client.domain.GetSecretRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.GetSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.GetSecretRequest

    -
    -
    Packages that use GetSecretRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.GetSecretRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/GetStateRequest.html b/docs/io/dapr/client/domain/class-use/GetStateRequest.html index 73fb20fd2..6c06d6dff 100644 --- a/docs/io/dapr/client/domain/class-use/GetStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/GetStateRequest.html @@ -2,124 +2,244 @@ - -Uses of Class io.dapr.client.domain.GetStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.GetStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.GetStateRequest

    -
    -
    Packages that use GetStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.GetStateRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/HttpExtension.html b/docs/io/dapr/client/domain/class-use/HttpExtension.html index 1faf2e875..e5c9fe4d1 100644 --- a/docs/io/dapr/client/domain/class-use/HttpExtension.html +++ b/docs/io/dapr/client/domain/class-use/HttpExtension.html @@ -2,253 +2,412 @@ - -Uses of Class io.dapr.client.domain.HttpExtension (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.HttpExtension (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.HttpExtension

    +

    Uses of Class
    io.dapr.client.domain.HttpExtension

    -
    Packages that use HttpExtension
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/InvokeBindingRequest.html b/docs/io/dapr/client/domain/class-use/InvokeBindingRequest.html index 2f812b5d4..ee7e6cb58 100644 --- a/docs/io/dapr/client/domain/class-use/InvokeBindingRequest.html +++ b/docs/io/dapr/client/domain/class-use/InvokeBindingRequest.html @@ -2,124 +2,244 @@ - -Uses of Class io.dapr.client.domain.InvokeBindingRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.InvokeBindingRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.InvokeBindingRequest

    -
    -
    Packages that use InvokeBindingRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.InvokeBindingRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/InvokeMethodRequest.html b/docs/io/dapr/client/domain/class-use/InvokeMethodRequest.html index 298b5599c..bea235c02 100644 --- a/docs/io/dapr/client/domain/class-use/InvokeMethodRequest.html +++ b/docs/io/dapr/client/domain/class-use/InvokeMethodRequest.html @@ -2,130 +2,254 @@ - -Uses of Class io.dapr.client.domain.InvokeMethodRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.InvokeMethodRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.InvokeMethodRequest

    -
    -
    Packages that use InvokeMethodRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.InvokeMethodRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/Metadata.html b/docs/io/dapr/client/domain/class-use/Metadata.html index c30b2e057..be78d321c 100644 --- a/docs/io/dapr/client/domain/class-use/Metadata.html +++ b/docs/io/dapr/client/domain/class-use/Metadata.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.Metadata (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.Metadata (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.Metadata

    +

    Uses of Class
    io.dapr.client.domain.Metadata

    -No usage of io.dapr.client.domain.Metadata
    +
    No usage of io.dapr.client.domain.Metadata
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/PublishEventRequest.html b/docs/io/dapr/client/domain/class-use/PublishEventRequest.html index d5fe71e36..d0fc78308 100644 --- a/docs/io/dapr/client/domain/class-use/PublishEventRequest.html +++ b/docs/io/dapr/client/domain/class-use/PublishEventRequest.html @@ -2,121 +2,241 @@ - -Uses of Class io.dapr.client.domain.PublishEventRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.PublishEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.PublishEventRequest

    -
    -
    Packages that use PublishEventRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.PublishEventRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/QueryStateItem.html b/docs/io/dapr/client/domain/class-use/QueryStateItem.html index 824731adc..73bbc1332 100644 --- a/docs/io/dapr/client/domain/class-use/QueryStateItem.html +++ b/docs/io/dapr/client/domain/class-use/QueryStateItem.html @@ -2,100 +2,207 @@ - -Uses of Class io.dapr.client.domain.QueryStateItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.QueryStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.QueryStateItem

    -
    -
    Packages that use QueryStateItem
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/QueryStateRequest.html b/docs/io/dapr/client/domain/class-use/QueryStateRequest.html index 6bf1b8cc9..3e1ea6ad4 100644 --- a/docs/io/dapr/client/domain/class-use/QueryStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/QueryStateRequest.html @@ -2,137 +2,261 @@ - -Uses of Class io.dapr.client.domain.QueryStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.QueryStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.QueryStateRequest

    +

    Uses of Class
    io.dapr.client.domain.QueryStateRequest

    -
    Packages that use QueryStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/QueryStateResponse.html b/docs/io/dapr/client/domain/class-use/QueryStateResponse.html index f81dc2316..47ce84d02 100644 --- a/docs/io/dapr/client/domain/class-use/QueryStateResponse.html +++ b/docs/io/dapr/client/domain/class-use/QueryStateResponse.html @@ -2,187 +2,323 @@ - -Uses of Class io.dapr.client.domain.QueryStateResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.QueryStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.QueryStateResponse

    -
    -
    Packages that use QueryStateResponse
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.QueryStateResponse

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/SaveStateRequest.html b/docs/io/dapr/client/domain/class-use/SaveStateRequest.html index 4edde1d7c..6ebfd91cc 100644 --- a/docs/io/dapr/client/domain/class-use/SaveStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/SaveStateRequest.html @@ -2,121 +2,241 @@ - -Uses of Class io.dapr.client.domain.SaveStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.SaveStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.SaveStateRequest

    -
    -
    Packages that use SaveStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.SaveStateRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/State.html b/docs/io/dapr/client/domain/class-use/State.html index ca5b472fc..3157f1585 100644 --- a/docs/io/dapr/client/domain/class-use/State.html +++ b/docs/io/dapr/client/domain/class-use/State.html @@ -2,268 +2,445 @@ - -Uses of Class io.dapr.client.domain.State (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.State (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.State

    -
    -
    Packages that use State
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/StateOptions.Concurrency.html b/docs/io/dapr/client/domain/class-use/StateOptions.Concurrency.html index e623b5a24..482971452 100644 --- a/docs/io/dapr/client/domain/class-use/StateOptions.Concurrency.html +++ b/docs/io/dapr/client/domain/class-use/StateOptions.Concurrency.html @@ -2,116 +2,229 @@ - -Uses of Enum Class io.dapr.client.domain.StateOptions.Concurrency (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.StateOptions.Concurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.client.domain.StateOptions.Concurrency

    -
    -
    Packages that use StateOptions.Concurrency
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/StateOptions.Consistency.html b/docs/io/dapr/client/domain/class-use/StateOptions.Consistency.html index 8f885674f..2d2f5d2a8 100644 --- a/docs/io/dapr/client/domain/class-use/StateOptions.Consistency.html +++ b/docs/io/dapr/client/domain/class-use/StateOptions.Consistency.html @@ -2,116 +2,229 @@ - -Uses of Enum Class io.dapr.client.domain.StateOptions.Consistency (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.StateOptions.Consistency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.client.domain.StateOptions.Consistency

    -
    -
    Packages that use StateOptions.Consistency
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationDeserializer.html b/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationDeserializer.html index 9f26cfa09..281c16c73 100644 --- a/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationDeserializer.html +++ b/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationDeserializer.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer

    +

    Uses of Class
    io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer

    -No usage of io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
    +
    No usage of io.dapr.client.domain.StateOptions.StateOptionDurationDeserializer
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationSerializer.html b/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationSerializer.html index 395d196b5..f45407223 100644 --- a/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationSerializer.html +++ b/docs/io/dapr/client/domain/class-use/StateOptions.StateOptionDurationSerializer.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.StateOptions.StateOptionDurationSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.StateOptions.StateOptionDurationSerializer

    +

    Uses of Class
    io.dapr.client.domain.StateOptions.StateOptionDurationSerializer

    -No usage of io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
    +
    No usage of io.dapr.client.domain.StateOptions.StateOptionDurationSerializer
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/StateOptions.html b/docs/io/dapr/client/domain/class-use/StateOptions.html index fcfda6ab0..45abb04cd 100644 --- a/docs/io/dapr/client/domain/class-use/StateOptions.html +++ b/docs/io/dapr/client/domain/class-use/StateOptions.html @@ -2,186 +2,323 @@ - -Uses of Class io.dapr.client.domain.StateOptions (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.StateOptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.StateOptions

    -
    -
    Packages that use StateOptions
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.StateOptions

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/SubscribeConfigurationRequest.html b/docs/io/dapr/client/domain/class-use/SubscribeConfigurationRequest.html index d8d806331..61d28844a 100644 --- a/docs/io/dapr/client/domain/class-use/SubscribeConfigurationRequest.html +++ b/docs/io/dapr/client/domain/class-use/SubscribeConfigurationRequest.html @@ -2,118 +2,236 @@ - -Uses of Class io.dapr.client.domain.SubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.SubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.SubscribeConfigurationRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.SubscribeConfigurationRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/SubscribeConfigurationResponse.html b/docs/io/dapr/client/domain/class-use/SubscribeConfigurationResponse.html index 66d54b82a..ee051c704 100644 --- a/docs/io/dapr/client/domain/class-use/SubscribeConfigurationResponse.html +++ b/docs/io/dapr/client/domain/class-use/SubscribeConfigurationResponse.html @@ -2,115 +2,227 @@ - -Uses of Class io.dapr.client.domain.SubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.SubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.SubscribeConfigurationResponse

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.SubscribeConfigurationResponse

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.OperationType.html b/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.OperationType.html index 74fdbf0f6..a2e21d55e 100644 --- a/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.OperationType.html +++ b/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.OperationType.html @@ -2,113 +2,224 @@ - -Uses of Enum Class io.dapr.client.domain.TransactionalStateOperation.OperationType (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.TransactionalStateOperation.OperationType (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.client.domain.TransactionalStateOperation.OperationType

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.html b/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.html index 47bcf4681..6d8d7cd98 100644 --- a/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.html +++ b/docs/io/dapr/client/domain/class-use/TransactionalStateOperation.html @@ -2,133 +2,258 @@ - -Uses of Class io.dapr.client.domain.TransactionalStateOperation (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.TransactionalStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.TransactionalStateOperation

    -
    -
    Packages that use TransactionalStateOperation
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.TransactionalStateOperation

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/TransactionalStateRequest.html b/docs/io/dapr/client/domain/class-use/TransactionalStateRequest.html index ef585db87..f997a9105 100644 --- a/docs/io/dapr/client/domain/class-use/TransactionalStateRequest.html +++ b/docs/io/dapr/client/domain/class-use/TransactionalStateRequest.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.TransactionalStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.TransactionalStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.TransactionalStateRequest

    +

    Uses of Class
    io.dapr.client.domain.TransactionalStateRequest

    -No usage of io.dapr.client.domain.TransactionalStateRequest
    +
    No usage of io.dapr.client.domain.TransactionalStateRequest
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationRequest.html b/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationRequest.html index d02f56da1..271b9484e 100644 --- a/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationRequest.html +++ b/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationRequest.html @@ -2,102 +2,210 @@ - -Uses of Class io.dapr.client.domain.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.UnsubscribeConfigurationRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.UnsubscribeConfigurationRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationResponse.html b/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationResponse.html index 3558a97bf..32a8aed9c 100644 --- a/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationResponse.html +++ b/docs/io/dapr/client/domain/class-use/UnsubscribeConfigurationResponse.html @@ -2,108 +2,218 @@ - -Uses of Class io.dapr.client.domain.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.UnsubscribeConfigurationResponse

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.UnsubscribeConfigurationResponse

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/package-summary.html b/docs/io/dapr/client/domain/package-summary.html index 54e756467..a56f49893 100644 --- a/docs/io/dapr/client/domain/package-summary.html +++ b/docs/io/dapr/client/domain/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.client.domain (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.client.domain

    -
    -
    package io.dapr.client.domain
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/package-tree.html b/docs/io/dapr/client/domain/package-tree.html index b55036fb8..d3c6bbe9f 100644 --- a/docs/io/dapr/client/domain/package-tree.html +++ b/docs/io/dapr/client/domain/package-tree.html @@ -2,138 +2,232 @@ - -io.dapr.client.domain Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.client.domain

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    -

    Enum Class Hierarchy

    +
    +

    Enum Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/package-use.html b/docs/io/dapr/client/domain/package-use.html index 787ca8fc1..4aa8df3d1 100644 --- a/docs/io/dapr/client/domain/package-use.html +++ b/docs/io/dapr/client/domain/package-use.html @@ -2,270 +2,511 @@ - -Uses of Package io.dapr.client.domain (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.client.domain (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.client.domain

    -
    Packages that use io.dapr.client.domain
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/Pagination.html b/docs/io/dapr/client/domain/query/Pagination.html index e8152c34a..cc44a2478 100644 --- a/docs/io/dapr/client/domain/query/Pagination.html +++ b/docs/io/dapr/client/domain/query/Pagination.html @@ -2,40 +2,59 @@ - -Pagination (dapr-sdk-parent 1.7.1 API) - + +Pagination (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Pagination

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.Pagination
    + +

    Class Pagination

    -
    -
    -
    public class Pagination -extends Object
    -
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/Query.html b/docs/io/dapr/client/domain/query/Query.html index 2ef4d86de..a7cf7a976 100644 --- a/docs/io/dapr/client/domain/query/Query.html +++ b/docs/io/dapr/client/domain/query/Query.html @@ -2,40 +2,59 @@ - -Query (dapr-sdk-parent 1.7.1 API) - + +Query (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -
    +
    - -

    Class Query

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.Query
    + +

    Class Query

    -
    -
    -
    public class Query -extends Object
    -
    -
    -
      - +
      +
        +
      • java.lang.Object
      • -
        -

        Constructor Summary

        -
        Constructors
        -
        -
        Constructor
        -
        Description
        - -
         
        +
          +
        • io.dapr.client.domain.query.Query
        • +
        +
      • +
      +
      +
        +
      • +
        +
        public class Query
        +extends Object
        +
      • +
      -
    +
    + - + + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/Sorting.Order.html b/docs/io/dapr/client/domain/query/Sorting.Order.html index 9fec8a71e..9eb06a548 100644 --- a/docs/io/dapr/client/domain/query/Sorting.Order.html +++ b/docs/io/dapr/client/domain/query/Sorting.Order.html @@ -2,40 +2,59 @@ - -Sorting.Order (dapr-sdk-parent 1.7.1 API) - + +Sorting.Order (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Enum Class Sorting.Order

    -
    -
    java.lang.Object -
    java.lang.Enum<Sorting.Order> -
    io.dapr.client.domain.query.Sorting.Order
    + +

    Enum Sorting.Order

    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
      +
      public static enum Sorting.Order
      +extends Enum<Sorting.Order>
    • - -
    • -
      -

      Enum Constant Summary

      -
      Enum Constants
      -
      -
      Enum Constant
      -
      Description
      - -
       
      - -
       
      +
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/Sorting.html b/docs/io/dapr/client/domain/query/Sorting.html index dbe26e2fc..c76cf6f6a 100644 --- a/docs/io/dapr/client/domain/query/Sorting.html +++ b/docs/io/dapr/client/domain/query/Sorting.html @@ -2,40 +2,59 @@ - -Sorting (dapr-sdk-parent 1.7.1 API) - + +Sorting (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Sorting

    + +

    Class Sorting

    -
    java.lang.Object -
    io.dapr.client.domain.query.Sorting
    -
    -
    -
    -
    public class Sorting -extends Object
    -
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/class-use/Pagination.html b/docs/io/dapr/client/domain/query/class-use/Pagination.html index 5ee29e2e0..a026eb68e 100644 --- a/docs/io/dapr/client/domain/query/class-use/Pagination.html +++ b/docs/io/dapr/client/domain/query/class-use/Pagination.html @@ -2,99 +2,208 @@ - -Uses of Class io.dapr.client.domain.query.Pagination (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.Pagination (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.Pagination

    -
    -
    Packages that use Pagination
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/class-use/Query.html b/docs/io/dapr/client/domain/query/class-use/Query.html index 8d2ec09de..de3936934 100644 --- a/docs/io/dapr/client/domain/query/class-use/Query.html +++ b/docs/io/dapr/client/domain/query/class-use/Query.html @@ -2,170 +2,309 @@ - -Uses of Class io.dapr.client.domain.query.Query (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.Query (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.Query

    -
    -
    Packages that use Query
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.query.Query

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/class-use/Sorting.Order.html b/docs/io/dapr/client/domain/query/class-use/Sorting.Order.html index 69b0d3ec8..e9772cf72 100644 --- a/docs/io/dapr/client/domain/query/class-use/Sorting.Order.html +++ b/docs/io/dapr/client/domain/query/class-use/Sorting.Order.html @@ -2,114 +2,227 @@ - -Uses of Enum Class io.dapr.client.domain.query.Sorting.Order (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.Sorting.Order (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.client.domain.query.Sorting.Order

    -
    -
    Packages that use Sorting.Order
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.query.Sorting.Order

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/class-use/Sorting.html b/docs/io/dapr/client/domain/query/class-use/Sorting.html index 9b7040f71..129a43ce0 100644 --- a/docs/io/dapr/client/domain/query/class-use/Sorting.html +++ b/docs/io/dapr/client/domain/query/class-use/Sorting.html @@ -2,101 +2,210 @@ - -Uses of Class io.dapr.client.domain.query.Sorting (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.Sorting (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.Sorting

    -
    -
    Packages that use Sorting
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.client.domain.query.Sorting

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/AndFilter.html b/docs/io/dapr/client/domain/query/filters/AndFilter.html index 7385ab4d8..c5150e47f 100644 --- a/docs/io/dapr/client/domain/query/filters/AndFilter.html +++ b/docs/io/dapr/client/domain/query/filters/AndFilter.html @@ -2,40 +2,59 @@ - -AndFilter (dapr-sdk-parent 1.7.1 API) - + +AndFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class AndFilter

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.filters.Filter<Void> -
    io.dapr.client.domain.query.filters.AndFilter
    -
    + +

    Class AndFilter

    -
    -
    -
    public class AndFilter -extends Filter<Void>
    -
    -
    -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/EqFilter.html b/docs/io/dapr/client/domain/query/filters/EqFilter.html index a3437c247..a0165cc16 100644 --- a/docs/io/dapr/client/domain/query/filters/EqFilter.html +++ b/docs/io/dapr/client/domain/query/filters/EqFilter.html @@ -2,40 +2,59 @@ - -EqFilter (dapr-sdk-parent 1.7.1 API) - + +EqFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class EqFilter<T>

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.filters.Filter<T> -
    io.dapr.client.domain.query.filters.EqFilter<T>
    + +

    Class EqFilter<T>

    -
    -
    -
    -
    public class EqFilter<T> -extends Filter<T>
    -
    -
    -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/Filter.html b/docs/io/dapr/client/domain/query/filters/Filter.html index 45a3e20df..2debcf46e 100644 --- a/docs/io/dapr/client/domain/query/filters/Filter.html +++ b/docs/io/dapr/client/domain/query/filters/Filter.html @@ -2,40 +2,59 @@ - -Filter (dapr-sdk-parent 1.7.1 API) - + +Filter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Filter<T>

    + +

    Class Filter<T>

    -
    java.lang.Object -
    io.dapr.client.domain.query.filters.Filter<T>
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      -
      Filter​(String name)
      -
       
      -
      -
      +
      public abstract class Filter<T>
      +extends Object
    • - -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
       
      -
      abstract String
      - -
       
      -
      abstract Boolean
      - -
       
      -
      -
      +
    -
    -

    Methods inherited from class java.lang.Object

    -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
    +
    +
      +
    • -
    • -
      -

      Constructor Details

      -
        -
      • -
        -

        Filter

        -
        public Filter(String name)
        -
        +
        +
          +
        • + + +

          Constructor Detail

          + + + +
            +
          • +

            Filter

            +
            public Filter​(String name)
          -
      • - -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getName

          -
          public String getName()
          +
        + +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            getName

            +
            public String getName()
          • -
          • -
            -

            getRepresentation

            -
            public abstract String getRepresentation()
            -
            +
          + + + +
            +
          • +

            getRepresentation

            +
            public abstract String getRepresentation()
          • -
          • -
            -

            isValid

            -
            public abstract Boolean isValid()
            -
            +
          + + + +
            +
          • +

            isValid

            +
            public abstract Boolean isValid()
          -
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/InFilter.html b/docs/io/dapr/client/domain/query/filters/InFilter.html index 3f33e69b0..7f6c2a4c7 100644 --- a/docs/io/dapr/client/domain/query/filters/InFilter.html +++ b/docs/io/dapr/client/domain/query/filters/InFilter.html @@ -2,40 +2,59 @@ - -InFilter (dapr-sdk-parent 1.7.1 API) - + +InFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class InFilter<T>

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.filters.Filter<T> -
    io.dapr.client.domain.query.filters.InFilter<T>
    + +

    Class InFilter<T>

    -
    -
    +
    + +
    +
      +

    • -
      public class InFilter<T> -extends Filter<T>
      -
    -
    -
      +
      public class InFilter<T>
      +extends Filter<T>
      + +
    +
    +
    + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/OrFilter.html b/docs/io/dapr/client/domain/query/filters/OrFilter.html index a77789af3..8e223c80b 100644 --- a/docs/io/dapr/client/domain/query/filters/OrFilter.html +++ b/docs/io/dapr/client/domain/query/filters/OrFilter.html @@ -2,40 +2,59 @@ - -OrFilter (dapr-sdk-parent 1.7.1 API) - + +OrFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class OrFilter

    -
    -
    java.lang.Object -
    io.dapr.client.domain.query.filters.Filter -
    io.dapr.client.domain.query.filters.OrFilter
    -
    + +

    Class OrFilter

    -
    -
    -
    public class OrFilter -extends Filter
    -
    -
    -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/class-use/AndFilter.html b/docs/io/dapr/client/domain/query/filters/class-use/AndFilter.html index 7a7a215c8..3b37101f9 100644 --- a/docs/io/dapr/client/domain/query/filters/class-use/AndFilter.html +++ b/docs/io/dapr/client/domain/query/filters/class-use/AndFilter.html @@ -2,90 +2,193 @@ - -Uses of Class io.dapr.client.domain.query.filters.AndFilter (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.filters.AndFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.filters.AndFilter

    -
    -
    Packages that use AndFilter
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/class-use/EqFilter.html b/docs/io/dapr/client/domain/query/filters/class-use/EqFilter.html index 1f979a5cd..f72976788 100644 --- a/docs/io/dapr/client/domain/query/filters/class-use/EqFilter.html +++ b/docs/io/dapr/client/domain/query/filters/class-use/EqFilter.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.query.filters.EqFilter (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.filters.EqFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.filters.EqFilter

    +

    Uses of Class
    io.dapr.client.domain.query.filters.EqFilter

    -No usage of io.dapr.client.domain.query.filters.EqFilter
    +
    No usage of io.dapr.client.domain.query.filters.EqFilter
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/class-use/Filter.html b/docs/io/dapr/client/domain/query/filters/class-use/Filter.html index 748ee106a..5cf069c8d 100644 --- a/docs/io/dapr/client/domain/query/filters/class-use/Filter.html +++ b/docs/io/dapr/client/domain/query/filters/class-use/Filter.html @@ -2,150 +2,291 @@ - -Uses of Class io.dapr.client.domain.query.filters.Filter (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.filters.Filter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.filters.Filter

    -
    -
    Packages that use Filter
    - -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/class-use/InFilter.html b/docs/io/dapr/client/domain/query/filters/class-use/InFilter.html index af6eed357..b8a6befe1 100644 --- a/docs/io/dapr/client/domain/query/filters/class-use/InFilter.html +++ b/docs/io/dapr/client/domain/query/filters/class-use/InFilter.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.client.domain.query.filters.InFilter (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.filters.InFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.filters.InFilter

    +

    Uses of Class
    io.dapr.client.domain.query.filters.InFilter

    -No usage of io.dapr.client.domain.query.filters.InFilter
    +
    No usage of io.dapr.client.domain.query.filters.InFilter
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/class-use/OrFilter.html b/docs/io/dapr/client/domain/query/filters/class-use/OrFilter.html index 4b9ad1d73..ff7c1e241 100644 --- a/docs/io/dapr/client/domain/query/filters/class-use/OrFilter.html +++ b/docs/io/dapr/client/domain/query/filters/class-use/OrFilter.html @@ -2,90 +2,193 @@ - -Uses of Class io.dapr.client.domain.query.filters.OrFilter (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.client.domain.query.filters.OrFilter (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.client.domain.query.filters.OrFilter

    -
    -
    Packages that use OrFilter
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/package-summary.html b/docs/io/dapr/client/domain/query/filters/package-summary.html index 6cd97bf0c..530dec33b 100644 --- a/docs/io/dapr/client/domain/query/filters/package-summary.html +++ b/docs/io/dapr/client/domain/query/filters/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.client.domain.query.filters (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain.query.filters (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.client.domain.query.filters

    -
    -
    package io.dapr.client.domain.query.filters
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/package-tree.html b/docs/io/dapr/client/domain/query/filters/package-tree.html index a0751cbf4..cd338a09d 100644 --- a/docs/io/dapr/client/domain/query/filters/package-tree.html +++ b/docs/io/dapr/client/domain/query/filters/package-tree.html @@ -2,86 +2,171 @@ - -io.dapr.client.domain.query.filters Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain.query.filters Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.client.domain.query.filters

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

      -
    • java.lang.Object +
    • java.lang.Object
        -
      • io.dapr.client.domain.query.filters.Filter<T> +
      • io.dapr.client.domain.query.filters.Filter<T>
          -
        • io.dapr.client.domain.query.filters.AndFilter
        • -
        • io.dapr.client.domain.query.filters.EqFilter<T>
        • -
        • io.dapr.client.domain.query.filters.InFilter<T>
        • -
        • io.dapr.client.domain.query.filters.OrFilter
        • +
        • io.dapr.client.domain.query.filters.AndFilter
        • +
        • io.dapr.client.domain.query.filters.EqFilter<T>
        • +
        • io.dapr.client.domain.query.filters.InFilter<T>
        • +
        • io.dapr.client.domain.query.filters.OrFilter
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/filters/package-use.html b/docs/io/dapr/client/domain/query/filters/package-use.html index 8fdab6703..c9dc73174 100644 --- a/docs/io/dapr/client/domain/query/filters/package-use.html +++ b/docs/io/dapr/client/domain/query/filters/package-use.html @@ -2,104 +2,213 @@ - -Uses of Package io.dapr.client.domain.query.filters (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.client.domain.query.filters (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.client.domain.query.filters

    - - -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/package-summary.html b/docs/io/dapr/client/domain/query/package-summary.html index 62b31eae9..d7dc269e4 100644 --- a/docs/io/dapr/client/domain/query/package-summary.html +++ b/docs/io/dapr/client/domain/query/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.client.domain.query (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain.query (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.client.domain.query

    -
    -
    package io.dapr.client.domain.query
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/package-tree.html b/docs/io/dapr/client/domain/query/package-tree.html index cf2e7f357..912d55194 100644 --- a/docs/io/dapr/client/domain/query/package-tree.html +++ b/docs/io/dapr/client/domain/query/package-tree.html @@ -2,95 +2,180 @@ - -io.dapr.client.domain.query Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client.domain.query Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.client.domain.query

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    -

    Enum Class Hierarchy

    +
    +

    Enum Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/domain/query/package-use.html b/docs/io/dapr/client/domain/query/package-use.html index a060eff4b..4ef81d5e1 100644 --- a/docs/io/dapr/client/domain/query/package-use.html +++ b/docs/io/dapr/client/domain/query/package-use.html @@ -2,119 +2,238 @@ - -Uses of Package io.dapr.client.domain.query (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.client.domain.query (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.client.domain.query

    -
    Packages that use io.dapr.client.domain.query
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    - -
     
    -
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/package-summary.html b/docs/io/dapr/client/package-summary.html index 0850a6cc8..3208e5ef1 100644 --- a/docs/io/dapr/client/package-summary.html +++ b/docs/io/dapr/client/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.client (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.client

    -
    -
    package io.dapr.client
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/package-tree.html b/docs/io/dapr/client/package-tree.html index caa70cfde..ceb1c7ded 100644 --- a/docs/io/dapr/client/package-tree.html +++ b/docs/io/dapr/client/package-tree.html @@ -2,111 +2,196 @@ - -io.dapr.client Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.client Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.client

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    +

    Interface Hierarchy

    -
    -

    Enum Class Hierarchy

    +
    +

    Enum Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/client/package-use.html b/docs/io/dapr/client/package-use.html index 205bd7d29..d53549d5f 100644 --- a/docs/io/dapr/client/package-use.html +++ b/docs/io/dapr/client/package-use.html @@ -2,170 +2,315 @@ - -Uses of Package io.dapr.client (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.client (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.client

    -
    Packages that use io.dapr.client
    - -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/BooleanProperty.html b/docs/io/dapr/config/BooleanProperty.html index f768ffcd7..1561921f1 100644 --- a/docs/io/dapr/config/BooleanProperty.html +++ b/docs/io/dapr/config/BooleanProperty.html @@ -2,40 +2,59 @@ - -BooleanProperty (dapr-sdk-parent 1.7.1 API) - + +BooleanProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class BooleanProperty

    + +

    Class BooleanProperty

    -
    java.lang.Object -
    io.dapr.config.Property<Boolean> -
    io.dapr.config.BooleanProperty
    -
    -
    -
    +
    + +
    +
      +

    • -
      public class BooleanProperty -extends Property<Boolean>
      +
      public class BooleanProperty
      +extends Property<Boolean>
      Boolean configuration property.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/GenericProperty.html b/docs/io/dapr/config/GenericProperty.html index ddc2b6b46..b2bf84662 100644 --- a/docs/io/dapr/config/GenericProperty.html +++ b/docs/io/dapr/config/GenericProperty.html @@ -2,40 +2,59 @@ - -GenericProperty (dapr-sdk-parent 1.7.1 API) - + +GenericProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GenericProperty<T>

    + +

    Class GenericProperty<T>

    -
    java.lang.Object -
    io.dapr.config.Property<T> -
    io.dapr.config.GenericProperty<T>
    -
    -
    -
    +
    + +
    +
      +

    • -
      public class GenericProperty<T> -extends Property<T>
      +
      public class GenericProperty<T>
      +extends Property<T>
      Configuration property for any type.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/IntegerProperty.html b/docs/io/dapr/config/IntegerProperty.html index a804923d6..a0e805fd8 100644 --- a/docs/io/dapr/config/IntegerProperty.html +++ b/docs/io/dapr/config/IntegerProperty.html @@ -2,40 +2,59 @@ - -IntegerProperty (dapr-sdk-parent 1.7.1 API) - + +IntegerProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class IntegerProperty

    + +

    Class IntegerProperty

    -
    java.lang.Object -
    io.dapr.config.Property<Integer> -
    io.dapr.config.IntegerProperty
    -
    -
    -
    +
    + +
    +
      +

    • -
      public class IntegerProperty -extends Property<Integer>
      +
      public class IntegerProperty
      +extends Property<Integer>
      Integer configuration property.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/Properties.html b/docs/io/dapr/config/Properties.html index 2f872ae55..156618149 100644 --- a/docs/io/dapr/config/Properties.html +++ b/docs/io/dapr/config/Properties.html @@ -2,36 +2,53 @@ - -Properties (dapr-sdk-parent 1.7.1 API) - + +Properties (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Properties

    -
    -
    java.lang.Object -
    io.dapr.config.Properties
    + +

    Class Properties

    -
    +
    + +
    +
      +

    • -
      public class Properties -extends Object
      +
      public class Properties
      +extends Object
      Global properties for Dapr's SDK, using Supplier so they are dynamically resolved.
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      API_PROTOCOL

      +
      @Deprecated
      +public static final Property<DaprApiProtocol> API_PROTOCOL
      +
      Deprecated. +
      This attribute will be deleted at SDK version 1.10.
      +
      Determines if Dapr client will use gRPC or HTTP to talk to Dapr's side car.
      -
    • -
    • -
      -

      API_METHOD_INVOCATION_PROTOCOL

      -
      public static final Property<DaprApiProtocol> API_METHOD_INVOCATION_PROTOCOL
      +
    + + + +
      +
    • +

      API_METHOD_INVOCATION_PROTOCOL

      +
      @Deprecated
      +public static final Property<DaprApiProtocol> API_METHOD_INVOCATION_PROTOCOL
      +
      Deprecated. +
      This attribute will be deleted at SDK version 1.10.
      +
      Determines if Dapr client should use gRPC or HTTP for Dapr's service method invocation APIs.
      -
    • -
    • -
      -

      API_TOKEN

      -
      public static final Property<String> API_TOKEN
      +
    + + + +
      +
    • +

      API_TOKEN

      +
      public static final Property<String> API_TOKEN
      API token for authentication between App and Dapr's side car.
      -
    • -
    • -
      -

      STRING_CHARSET

      -
      public static final Property<Charset> STRING_CHARSET
      +
    + + + +
      +
    • +

      STRING_CHARSET

      +
      public static final Property<Charset> STRING_CHARSET
      Determines which string encoding is used in Dapr's Java SDK.
      -
    • -
    • -
      -

      HTTP_CLIENT_READ_TIMEOUT_SECONDS

      -
      public static final Property<Integer> HTTP_CLIENT_READ_TIMEOUT_SECONDS
      +
    + + + +
      +
    • +

      HTTP_CLIENT_READ_TIMEOUT_SECONDS

      +
      public static final Property<Integer> HTTP_CLIENT_READ_TIMEOUT_SECONDS
      Dapr's timeout in seconds for HTTP client reads.
      -
    • -
    • -
      -

      HTTP_CLIENT_MAX_REQUESTS

      -
      public static final Property<Integer> HTTP_CLIENT_MAX_REQUESTS
      +
    + + + +
      +
    • +

      HTTP_CLIENT_MAX_REQUESTS

      +
      public static final Property<Integer> HTTP_CLIENT_MAX_REQUESTS
      Dapr's default maximum number of requests for HTTP client to execute concurrently.
      -
    • -
    • -
      -

      HTTP_CLIENT_MAX_IDLE_CONNECTIONS

      -
      public static final Property<Integer> HTTP_CLIENT_MAX_IDLE_CONNECTIONS
      +
    + + + +
      +
    • +

      HTTP_CLIENT_MAX_IDLE_CONNECTIONS

      +
      public static final Property<Integer> HTTP_CLIENT_MAX_IDLE_CONNECTIONS
      Dapr's default maximum number of idle connections for HTTP connection pool.
      -
    - - -
  • -
    -

    Constructor Details

    -
      -
    • -
      -

      Properties

      -
      public Properties()
      +
    + +
    +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Properties

        +
        public Properties()
      -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/Property.html b/docs/io/dapr/config/Property.html index 968273ac0..a4f36d101 100644 --- a/docs/io/dapr/config/Property.html +++ b/docs/io/dapr/config/Property.html @@ -2,40 +2,59 @@ - -Property (dapr-sdk-parent 1.7.1 API) - + +Property (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class Property<T>

    -
    -
    java.lang.Object -
    io.dapr.config.Property<T>
    + +

    Class Property<T>

    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      parse

      +
      protected abstract T parse​(String value)
      Parses the value to the specific type.
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - String value to be parsed.
      -
      Returns:
      +
      Returns:
      Value in the specific type.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/StringProperty.html b/docs/io/dapr/config/StringProperty.html index d79a61f28..7651e68a7 100644 --- a/docs/io/dapr/config/StringProperty.html +++ b/docs/io/dapr/config/StringProperty.html @@ -2,40 +2,59 @@ - -StringProperty (dapr-sdk-parent 1.7.1 API) - + +StringProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class StringProperty

    + +

    Class StringProperty

    -
    java.lang.Object -
    io.dapr.config.Property<String> -
    io.dapr.config.StringProperty
    -
    -
    -
    +
    + +
    +
      +

    • -
      public class StringProperty -extends Property<String>
      +
      public class StringProperty
      +extends Property<String>
      String configuration property.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/BooleanProperty.html b/docs/io/dapr/config/class-use/BooleanProperty.html index 4451c2f7f..0b178c96b 100644 --- a/docs/io/dapr/config/class-use/BooleanProperty.html +++ b/docs/io/dapr/config/class-use/BooleanProperty.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.config.BooleanProperty (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.BooleanProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.config.BooleanProperty

    +

    Uses of Class
    io.dapr.config.BooleanProperty

    -No usage of io.dapr.config.BooleanProperty
    +
    No usage of io.dapr.config.BooleanProperty
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/GenericProperty.html b/docs/io/dapr/config/class-use/GenericProperty.html index 43ec51afa..708e4e850 100644 --- a/docs/io/dapr/config/class-use/GenericProperty.html +++ b/docs/io/dapr/config/class-use/GenericProperty.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.config.GenericProperty (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.GenericProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.config.GenericProperty

    +

    Uses of Class
    io.dapr.config.GenericProperty

    -No usage of io.dapr.config.GenericProperty
    +
    No usage of io.dapr.config.GenericProperty
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/IntegerProperty.html b/docs/io/dapr/config/class-use/IntegerProperty.html index c49264636..cbb2a9e14 100644 --- a/docs/io/dapr/config/class-use/IntegerProperty.html +++ b/docs/io/dapr/config/class-use/IntegerProperty.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.config.IntegerProperty (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.IntegerProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.config.IntegerProperty

    +

    Uses of Class
    io.dapr.config.IntegerProperty

    -No usage of io.dapr.config.IntegerProperty
    +
    No usage of io.dapr.config.IntegerProperty
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/Properties.html b/docs/io/dapr/config/class-use/Properties.html index 7f6b4ce05..05395b49b 100644 --- a/docs/io/dapr/config/class-use/Properties.html +++ b/docs/io/dapr/config/class-use/Properties.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.config.Properties (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.Properties (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.config.Properties

    +

    Uses of Class
    io.dapr.config.Properties

    -No usage of io.dapr.config.Properties
    +
    No usage of io.dapr.config.Properties
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/Property.html b/docs/io/dapr/config/class-use/Property.html index 89bd29224..ec1f6024c 100644 --- a/docs/io/dapr/config/class-use/Property.html +++ b/docs/io/dapr/config/class-use/Property.html @@ -2,163 +2,300 @@ - -Uses of Class io.dapr.config.Property (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.Property (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.config.Property

    -
    -
    Packages that use Property
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.config.Property

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/class-use/StringProperty.html b/docs/io/dapr/config/class-use/StringProperty.html index 1e287dd55..a338ad10d 100644 --- a/docs/io/dapr/config/class-use/StringProperty.html +++ b/docs/io/dapr/config/class-use/StringProperty.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.config.StringProperty (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.config.StringProperty (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.config.StringProperty

    +

    Uses of Class
    io.dapr.config.StringProperty

    -No usage of io.dapr.config.StringProperty
    +
    No usage of io.dapr.config.StringProperty
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/package-summary.html b/docs/io/dapr/config/package-summary.html index 0d156ae44..31b733a04 100644 --- a/docs/io/dapr/config/package-summary.html +++ b/docs/io/dapr/config/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.config (dapr-sdk-parent 1.7.1 API) - + +io.dapr.config (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.config

    -
    -
    package io.dapr.config
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/package-tree.html b/docs/io/dapr/config/package-tree.html index e61b0ebba..1f217b9ba 100644 --- a/docs/io/dapr/config/package-tree.html +++ b/docs/io/dapr/config/package-tree.html @@ -2,87 +2,172 @@ - -io.dapr.config Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.config Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.config

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/config/package-use.html b/docs/io/dapr/config/package-use.html index d2f394e40..ddd83821c 100644 --- a/docs/io/dapr/config/package-use.html +++ b/docs/io/dapr/config/package-use.html @@ -2,89 +2,186 @@ - -Uses of Package io.dapr.config (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.config (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.config

    -
    Packages that use io.dapr.config
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/DaprError.html b/docs/io/dapr/exceptions/DaprError.html index 905b89d23..1e5b3fe7d 100644 --- a/docs/io/dapr/exceptions/DaprError.html +++ b/docs/io/dapr/exceptions/DaprError.html @@ -2,40 +2,59 @@ - -DaprError (dapr-sdk-parent 1.7.1 API) - + +DaprError (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprError

    -
    -
    java.lang.Object -
    io.dapr.exceptions.DaprError
    + +

    Class DaprError

    -
    +
    + +
    +
      +

    • -
      public class DaprError -extends Object
      +
      public class DaprError
      +extends Object
      Represents an error message from Dapr.
      -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
       
      +
    • +
    - +
    + + + + +
      +
    • +

      setMessage

      +
      public DaprError setMessage​(String message)
      Sets the error message.
      -
      -
      Parameters:
      +
      +
      Parameters:
      message - Error message.
      -
      Returns:
      +
      Returns:
      This instance.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/DaprException.html b/docs/io/dapr/exceptions/DaprException.html index f945d7d63..ba8b3049f 100644 --- a/docs/io/dapr/exceptions/DaprException.html +++ b/docs/io/dapr/exceptions/DaprException.html @@ -2,40 +2,59 @@ - -DaprException (dapr-sdk-parent 1.7.1 API) - + +DaprException (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DaprException

    + +

    Class DaprException

    - -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DaprException

      +
      public DaprException​(String errorCode,
      +                     String message)
      New Exception from a client-side generated error code and message.
      -
      -
      Parameters:
      +
      +
      Parameters:
      errorCode - Client-side error code.
      message - Client-side error message.
      -
    • -
    • -
      -

      DaprException

      -
      public DaprException(String errorCode, - String message, - Throwable cause)
      +
    + + + +
      +
    • +

      DaprException

      +
      public DaprException​(String errorCode,
      +                     String message,
      +                     Throwable cause)
      New exception from a server-side generated error code and message.
      -
      -
      Parameters:
      +
      +
      Parameters:
      errorCode - Client-side error code.
      message - Client-side error message.
      cause - the cause (which is saved for later retrieval by the - Throwable.getCause() method). (A null value is + Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      getErrorCode

      -
      public String getErrorCode()
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getErrorCode

          +
          public String getErrorCode()
          Returns the exception's error code.
          -
          -
          Returns:
          +
          +
          Returns:
          Error code.
          -
    • -
    • -
      -

      wrap

      -
      public static void wrap(Throwable exception)
      +
    + + + +
      +
    • +

      wrap

      +
      public static void wrap​(Throwable exception)
      Wraps an exception into DaprException (if not already DaprException).
      -
      -
      Parameters:
      +
      +
      Parameters:
      exception - Exception to be wrapped.
      -
  • -
  • -
    -

    wrap

    -
    public static <T> Callable<T> wrap(Callable<T> callable)
    + + + + +
      +
    • +

      wrap

      +
      public static <T> Callable<T> wrap​(Callable<T> callable)
      Wraps a callable with a try-catch to throw DaprException.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - type to be returned
      -
      Parameters:
      +
      Parameters:
      callable - callable to be invoked.
      -
      Returns:
      +
      Returns:
      object of type T.
      -
  • -
  • -
    -

    wrap

    -
    public static Runnable wrap(Runnable runnable)
    + + + + +
      +
    • +

      wrap

      +
      public static Runnable wrap​(Runnable runnable)
      Wraps a runnable with a try-catch to throw DaprException.
      -
      -
      Parameters:
      +
      +
      Parameters:
      runnable - runnable to be invoked.
      -
      Returns:
      +
      Returns:
      object of type T.
      -
  • -
  • -
    -

    wrapMono

    -
    public static <T> reactor.core.publisher.Mono<T> wrapMono(Exception exception)
    + + + + +
      +
    • +

      wrapMono

      +
      public static <T> reactor.core.publisher.Mono<T> wrapMono​(Exception exception)
      Wraps an exception into DaprException (if not already DaprException).
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Mono's response type.
      -
      Parameters:
      +
      Parameters:
      exception - Exception to be wrapped.
      -
      Returns:
      +
      Returns:
      Mono containing DaprException.
      -
  • -
  • -
    -

    wrapFlux

    -
    public static <T> reactor.core.publisher.Flux<T> wrapFlux(Exception exception)
    + + + + +
      +
    • +

      wrapFlux

      +
      public static <T> reactor.core.publisher.Flux<T> wrapFlux​(Exception exception)
      Wraps an exception into DaprException (if not already DaprException).
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Flux's response type.
      -
      Parameters:
      +
      Parameters:
      exception - Exception to be wrapped.
      -
      Returns:
      +
      Returns:
      Flux containing DaprException.
      -
  • -
  • -
    -

    propagate

    -
    public static RuntimeException propagate(Throwable exception)
    + + + + +
      +
    • +

      propagate

      +
      public static RuntimeException propagate​(Throwable exception)
      Wraps an exception into DaprException (if not already DaprException).
      -
      -
      Parameters:
      +
      +
      Parameters:
      exception - Exception to be wrapped.
      -
      Returns:
      +
      Returns:
      wrapped RuntimeException
      -
  • - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/class-use/DaprError.html b/docs/io/dapr/exceptions/class-use/DaprError.html index dd4bae791..9bdc38547 100644 --- a/docs/io/dapr/exceptions/class-use/DaprError.html +++ b/docs/io/dapr/exceptions/class-use/DaprError.html @@ -2,114 +2,224 @@ - -Uses of Class io.dapr.exceptions.DaprError (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.exceptions.DaprError (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.exceptions.DaprError

    -
    -
    Packages that use DaprError
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.exceptions.DaprError

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/class-use/DaprException.html b/docs/io/dapr/exceptions/class-use/DaprException.html index cca791a66..e5fa0e15e 100644 --- a/docs/io/dapr/exceptions/class-use/DaprException.html +++ b/docs/io/dapr/exceptions/class-use/DaprException.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.exceptions.DaprException (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.exceptions.DaprException (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.exceptions.DaprException

    +

    Uses of Class
    io.dapr.exceptions.DaprException

    -No usage of io.dapr.exceptions.DaprException
    +
    No usage of io.dapr.exceptions.DaprException
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/package-summary.html b/docs/io/dapr/exceptions/package-summary.html index e1f18ff29..516a00eb0 100644 --- a/docs/io/dapr/exceptions/package-summary.html +++ b/docs/io/dapr/exceptions/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.exceptions (dapr-sdk-parent 1.7.1 API) - + +io.dapr.exceptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.exceptions

    -
    -
    package io.dapr.exceptions
    -
    -
      -
    • -
      Class Summary
      -
      -
      Class
      -
      Description
      - -
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        ClassDescription
        DaprError
        Represents an error message from Dapr.
        - - +
      • -
      • -
        Exception Summary
        -
        -
        Exception
        -
        Description
        - -
        +
      • + + + + + + + + + + + + +
        Exception Summary 
        ExceptionDescription
        DaprException
        A Dapr's specific exception.
        - - +
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/package-tree.html b/docs/io/dapr/exceptions/package-tree.html index daff9b912..006f1eb23 100644 --- a/docs/io/dapr/exceptions/package-tree.html +++ b/docs/io/dapr/exceptions/package-tree.html @@ -2,76 +2,119 @@ - -io.dapr.exceptions Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.exceptions Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.exceptions

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/exceptions/package-use.html b/docs/io/dapr/exceptions/package-use.html index 361458aa6..51de54042 100644 --- a/docs/io/dapr/exceptions/package-use.html +++ b/docs/io/dapr/exceptions/package-use.html @@ -2,89 +2,186 @@ - -Uses of Package io.dapr.exceptions (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.exceptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.exceptions

    -
    Packages that use io.dapr.exceptions
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/internal/opencensus/GrpcWrapper.html b/docs/io/dapr/internal/opencensus/GrpcWrapper.html index 82090ebc3..c1de8dcc2 100644 --- a/docs/io/dapr/internal/opencensus/GrpcWrapper.html +++ b/docs/io/dapr/internal/opencensus/GrpcWrapper.html @@ -2,40 +2,59 @@ - -GrpcWrapper (dapr-sdk-parent 1.7.1 API) - + +GrpcWrapper (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class GrpcWrapper

    -
    -
    java.lang.Object -
    io.dapr.internal.opencensus.GrpcWrapper
    + +

    Class GrpcWrapper

    -
    +
    + +
    +
      +

    • -
      public final class GrpcWrapper -extends Object
      +
      public final class GrpcWrapper
      +extends Object
      Wraps a Dapr gRPC stub with telemetry interceptor.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/internal/opencensus/class-use/GrpcWrapper.html b/docs/io/dapr/internal/opencensus/class-use/GrpcWrapper.html index 1e7162c7a..c47889271 100644 --- a/docs/io/dapr/internal/opencensus/class-use/GrpcWrapper.html +++ b/docs/io/dapr/internal/opencensus/class-use/GrpcWrapper.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.internal.opencensus.GrpcWrapper (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.internal.opencensus.GrpcWrapper (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.internal.opencensus.GrpcWrapper

    +

    Uses of Class
    io.dapr.internal.opencensus.GrpcWrapper

    -No usage of io.dapr.internal.opencensus.GrpcWrapper
    +
    No usage of io.dapr.internal.opencensus.GrpcWrapper
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/internal/opencensus/package-summary.html b/docs/io/dapr/internal/opencensus/package-summary.html index cb06af6ab..866f14d57 100644 --- a/docs/io/dapr/internal/opencensus/package-summary.html +++ b/docs/io/dapr/internal/opencensus/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.internal.opencensus (dapr-sdk-parent 1.7.1 API) - + +io.dapr.internal.opencensus (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.internal.opencensus

    -
    -
    package io.dapr.internal.opencensus
    -
    -
      -
    • -
      Class Summary
      -
      -
      Class
      -
      Description
      - -
      +
      +
        +
      • + + + + + + + + + + + + +
        Class Summary 
        ClassDescription
        GrpcWrapper
        Wraps a Dapr gRPC stub with telemetry interceptor.
        - - +
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/internal/opencensus/package-tree.html b/docs/io/dapr/internal/opencensus/package-tree.html index e817dc337..0b483790d 100644 --- a/docs/io/dapr/internal/opencensus/package-tree.html +++ b/docs/io/dapr/internal/opencensus/package-tree.html @@ -2,79 +2,164 @@ - -io.dapr.internal.opencensus Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.internal.opencensus Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.internal.opencensus

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/internal/opencensus/package-use.html b/docs/io/dapr/internal/opencensus/package-use.html index 2374ee6bf..fc241d0d9 100644 --- a/docs/io/dapr/internal/opencensus/package-use.html +++ b/docs/io/dapr/internal/opencensus/package-use.html @@ -2,65 +2,149 @@ - -Uses of Package io.dapr.internal.opencensus (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.internal.opencensus (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.internal.opencensus

    -No usage of io.dapr.internal.opencensus
    +
    No usage of io.dapr.internal.opencensus
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/package-summary.html b/docs/io/dapr/package-summary.html index 96514fe21..bd907a088 100644 --- a/docs/io/dapr/package-summary.html +++ b/docs/io/dapr/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr (dapr-sdk-parent 1.7.1 API) - + +io.dapr (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr

    -
    -
    package io.dapr
    -
    -
      -
    • -
      Annotation Interfaces Summary
      -
      -
      Annotation Interface
      -
      Description
      - -
       
      - -
       
      -
      +
      +
        +
      • + + + + + + + + + + + + + + + + +
        Annotation Types Summary 
        Annotation TypeDescription
        Rule 
        Topic 
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/package-tree.html b/docs/io/dapr/package-tree.html index 405883407..39bca175d 100644 --- a/docs/io/dapr/package-tree.html +++ b/docs/io/dapr/package-tree.html @@ -2,76 +2,161 @@ - -io.dapr Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr

    -Package Hierarchies: +Package Hierarchies:
    -
    -

    Annotation Interface Hierarchy

    +
    +
    +

    Annotation Type Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/package-use.html b/docs/io/dapr/package-use.html index 699da7313..fbdd5d33c 100644 --- a/docs/io/dapr/package-use.html +++ b/docs/io/dapr/package-use.html @@ -2,65 +2,184 @@ - -Uses of Package io.dapr (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr

    -No usage of io.dapr
    +
    + +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/DaprObjectSerializer.html b/docs/io/dapr/serializer/DaprObjectSerializer.html index a0271f48c..d44a9f035 100644 --- a/docs/io/dapr/serializer/DaprObjectSerializer.html +++ b/docs/io/dapr/serializer/DaprObjectSerializer.html @@ -2,40 +2,59 @@ - -DaprObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +DaprObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -
    +
    - -

    Interface DaprObjectSerializer

    + +

    Interface DaprObjectSerializer

    -
    -
    +
    +
    +
      +
    • +
      All Known Implementing Classes:
      DefaultObjectSerializer

      -
      public interface DaprObjectSerializer
      +
      public interface DaprObjectSerializer
      Serializes and deserializes application's objects.
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      <T> T
      -
      deserialize​(byte[] data, - TypeRef<T> type)
      -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          serialize

          -
          byte[] serialize(Object o) - throws IOException
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              serialize

              +
              byte[] serialize​(Object o)
              +          throws IOException
              Serializes the given object as byte[].
              -
              -
              Parameters:
              +
              +
              Parameters:
              o - Object to be serialized.
              -
              Returns:
              +
              Returns:
              Serialized object.
              -
              Throws:
              -
              IOException - If cannot serialize.
              +
              Throws:
              +
              IOException - If cannot serialize.
              -
        • -
        • -
          -

          deserialize

          -
          <T> T deserialize(byte[] data, - TypeRef<T> type) - throws IOException
          +
        + + + +
          +
        • +

          deserialize

          +
          <T> T deserialize​(byte[] data,
          +                  TypeRef<T> type)
          +           throws IOException
          Deserializes the given byte[] into a object.
          -
          -
          Type Parameters:
          +
          +
          Type Parameters:
          T - Type of object to be deserialized.
          -
          Parameters:
          +
          Parameters:
          data - Data to be deserialized.
          type - Type of object to be deserialized.
          -
          Returns:
          +
          Returns:
          Deserialized object.
          -
          Throws:
          -
          IOException - If cannot deserialize object.
          +
          Throws:
          +
          IOException - If cannot deserialize object.
          -
      • -
      • -
        -

        getContentType

        -
        String getContentType()
        +
      + + + +
        +
      • +

        getContentType

        +
        String getContentType()
        Returns the content type of the request.
        -
        -
        Returns:
        +
        +
        Returns:
        content type of the request
        -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/DefaultObjectSerializer.html b/docs/io/dapr/serializer/DefaultObjectSerializer.html index 1e8be237a..9542adf14 100644 --- a/docs/io/dapr/serializer/DefaultObjectSerializer.html +++ b/docs/io/dapr/serializer/DefaultObjectSerializer.html @@ -2,40 +2,59 @@ - -DefaultObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +DefaultObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    - -

    Class DefaultObjectSerializer

    -
    -
    java.lang.Object -
    io.dapr.client.ObjectSerializer -
    io.dapr.serializer.DefaultObjectSerializer
    + +

    Class DefaultObjectSerializer

    -
    -
    -
    +
    + +
    +
    -
    -
    +
    + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/class-use/DaprObjectSerializer.html b/docs/io/dapr/serializer/class-use/DaprObjectSerializer.html index 1247d8095..160abc3c8 100644 --- a/docs/io/dapr/serializer/class-use/DaprObjectSerializer.html +++ b/docs/io/dapr/serializer/class-use/DaprObjectSerializer.html @@ -2,187 +2,336 @@ - -Uses of Interface io.dapr.serializer.DaprObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.serializer.DaprObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.serializer.DaprObjectSerializer

    -
    -
    Packages that use DaprObjectSerializer
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    - -
     
    - -
     
    +

    Uses of Interface
    io.dapr.serializer.DaprObjectSerializer

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/class-use/DefaultObjectSerializer.html b/docs/io/dapr/serializer/class-use/DefaultObjectSerializer.html index c664be5e2..75e9f489d 100644 --- a/docs/io/dapr/serializer/class-use/DefaultObjectSerializer.html +++ b/docs/io/dapr/serializer/class-use/DefaultObjectSerializer.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.serializer.DefaultObjectSerializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.serializer.DefaultObjectSerializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.serializer.DefaultObjectSerializer

    +

    Uses of Class
    io.dapr.serializer.DefaultObjectSerializer

    -No usage of io.dapr.serializer.DefaultObjectSerializer
    +
    No usage of io.dapr.serializer.DefaultObjectSerializer
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/package-summary.html b/docs/io/dapr/serializer/package-summary.html index 45f2ed283..2a540bd66 100644 --- a/docs/io/dapr/serializer/package-summary.html +++ b/docs/io/dapr/serializer/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.serializer (dapr-sdk-parent 1.7.1 API) - + +io.dapr.serializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.serializer

    -
    -
    package io.dapr.serializer
    -
    -
      -
    • -
      Interface Summary
      -
      -
      Interface
      -
      Description
      - -
      +
      +
        +
      • + + + + + + + + + + + + +
        Interface Summary 
        InterfaceDescription
        DaprObjectSerializer
        Serializes and deserializes application's objects.
        - - +
      • -
      • -
        Class Summary
        -
        -
        Class
        -
        Description
        - -
        +
      • + + + + + + + + + + + + +
        Class Summary 
        ClassDescription
        DefaultObjectSerializer
        Default serializer/deserializer for request/response objects and for state objects too.
        - - +
      -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/package-tree.html b/docs/io/dapr/serializer/package-tree.html index d404f37c6..90879e3a1 100644 --- a/docs/io/dapr/serializer/package-tree.html +++ b/docs/io/dapr/serializer/package-tree.html @@ -2,89 +2,174 @@ - -io.dapr.serializer Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.serializer Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.serializer

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    +

    Interface Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/serializer/package-use.html b/docs/io/dapr/serializer/package-use.html index 477412e46..aaacf802f 100644 --- a/docs/io/dapr/serializer/package-use.html +++ b/docs/io/dapr/serializer/package-use.html @@ -2,134 +2,255 @@ - -Uses of Package io.dapr.serializer (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.serializer (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.serializer

    -
    Packages that use io.dapr.serializer
    - -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/DefaultContentTypeConverter.html b/docs/io/dapr/utils/DefaultContentTypeConverter.html new file mode 100644 index 000000000..3e46d2c74 --- /dev/null +++ b/docs/io/dapr/utils/DefaultContentTypeConverter.html @@ -0,0 +1,495 @@ + + + + + +DefaultContentTypeConverter (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.utils
    +

    Class DefaultContentTypeConverter

    +
    +
    + +
    +
      +
    • +
      +
      public class DefaultContentTypeConverter
      +extends Object
      +
      A utility class for converting event to bytes based on content type or given serializer. + When an application/json or application/cloudevents+json is given as content type, the object serializer is used + to serialize the data into bytes
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          DefaultContentTypeConverter

          +
          public DefaultContentTypeConverter()
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + + + +
          +
        • +

          convertEventToBytesForHttp

          +
          public static <T> byte[] convertEventToBytesForHttp​(T event,
          +                                                    String contentType)
          +                                             throws IllegalArgumentException,
          +                                                    IOException
          +
          Function to convert a given event to bytes for HTTP calls.
          +
          +
          Type Parameters:
          +
          T - The type of the event
          +
          Parameters:
          +
          event - The input event
          +
          contentType - The content type of the event
          +
          Returns:
          +
          the event as bytes
          +
          Throws:
          +
          IllegalArgumentException - on mismatch between contentType and event types
          +
          IOException - on serialization
          +
          +
        • +
        + + + + + +
          +
        • +

          convertEventToBytesForGrpc

          +
          public static <T> byte[] convertEventToBytesForGrpc​(T event,
          +                                                    String contentType)
          +                                             throws IllegalArgumentException,
          +                                                    IOException
          +
          Function to convert a given event to bytes for gRPC calls.
          +
          +
          Type Parameters:
          +
          T - The type of the event
          +
          Parameters:
          +
          event - The input event
          +
          contentType - The content type of the event
          +
          Returns:
          +
          the event as bytes
          +
          Throws:
          +
          IllegalArgumentException - on mismatch between contentType and event types
          +
          IOException - on serialization
          +
          +
        • +
        + + + +
          +
        • +

          convertBytesToEventFromHttp

          +
          public static <T> T convertBytesToEventFromHttp​(byte[] event,
          +                                                String contentType,
          +                                                TypeRef<T> typeRef)
          +                                         throws IllegalArgumentException,
          +                                                IOException
          +
          Function to convert a bytes array from HTTP input into event based on given object deserializer.
          +
          +
          Type Parameters:
          +
          T - The type of the event
          +
          Parameters:
          +
          event - The input event
          +
          contentType - The content type of the event
          +
          typeRef - The type to convert the event to
          +
          Returns:
          +
          the event as bytes
          +
          Throws:
          +
          IllegalArgumentException - on mismatch between contentType and event types
          +
          IOException - on serialization
          +
          +
        • +
        + + + +
          +
        • +

          convertBytesToEventFromGrpc

          +
          public static <T> T convertBytesToEventFromGrpc​(byte[] event,
          +                                                String contentType,
          +                                                TypeRef<T> typeRef)
          +                                         throws IllegalArgumentException,
          +                                                IOException
          +
          Function to convert a bytes array from gRPC input into event based on given object deserializer.
          +
          +
          Type Parameters:
          +
          T - The type of the event
          +
          Parameters:
          +
          event - The input event
          +
          contentType - The content type of the event
          +
          typeRef - The type to convert the event to
          +
          Returns:
          +
          the event as bytes
          +
          Throws:
          +
          IllegalArgumentException - on mismatch between contentType and event types
          +
          IOException - on serialization
          +
          +
        • +
        + + + +
          +
        • +

          isCloudEventContentType

          +
          public static boolean isCloudEventContentType​(String contentType)
          +
        • +
        + + + +
          +
        • +

          isJsonContentType

          +
          public static boolean isJsonContentType​(String contentType)
          +
        • +
        + + + +
          +
        • +

          isStringContentType

          +
          public static boolean isStringContentType​(String contentType)
          +
        • +
        + + + +
          +
        • +

          isBinaryContentType

          +
          public static boolean isBinaryContentType​(String contentType)
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/utils/DurationUtils.html b/docs/io/dapr/utils/DurationUtils.html index b48fc9a3f..585db7c79 100644 --- a/docs/io/dapr/utils/DurationUtils.html +++ b/docs/io/dapr/utils/DurationUtils.html @@ -2,40 +2,59 @@ - -DurationUtils (dapr-sdk-parent 1.7.1 API) - + +DurationUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.utils
    -

    Class DurationUtils

    +
    Package io.dapr.utils
    +

    Class DurationUtils

    -
    java.lang.Object -
    io.dapr.utils.DurationUtils
    -
    -
    -
    -
    public class DurationUtils -extends Object
    -
    -
    -
      - +
      + +
      +
        +
      • +
        +
        public class DurationUtils
        +extends Object
        +
      • +
      -
    +
    + - + + +
    +
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/NetworkUtils.html b/docs/io/dapr/utils/NetworkUtils.html index caac90b95..83e621523 100644 --- a/docs/io/dapr/utils/NetworkUtils.html +++ b/docs/io/dapr/utils/NetworkUtils.html @@ -2,40 +2,59 @@ - -NetworkUtils (dapr-sdk-parent 1.7.1 API) - + +NetworkUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.utils
    -

    Class NetworkUtils

    -
    -
    java.lang.Object -
    io.dapr.utils.NetworkUtils
    +
    Package io.dapr.utils
    +

    Class NetworkUtils

    -
    +
    + +
    +
      +

    • -
      public final class NetworkUtils -extends Object
      +
      public final class NetworkUtils
      +extends Object
      Utility methods for network, internal to Dapr SDK.
      -
    -
    -
      + +
    +
    +
    + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/TypeRef.html b/docs/io/dapr/utils/TypeRef.html index 8df3d0494..0ce577fbd 100644 --- a/docs/io/dapr/utils/TypeRef.html +++ b/docs/io/dapr/utils/TypeRef.html @@ -2,40 +2,59 @@ - -TypeRef (dapr-sdk-parent 1.7.1 API) - + +TypeRef (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.utils
    -

    Class TypeRef<T>

    +
    Package io.dapr.utils
    +

    Class TypeRef<T>

    -
    java.lang.Object -
    io.dapr.utils.TypeRef<T>
    -
    -
    -
    -
    Type Parameters:
    +
    + +
    +
      +
    • +
      +
      Type Parameters:
      T - Type to be deserialized.

      -
      public abstract class TypeRef<T> -extends Object
      +
      public abstract class TypeRef<T>
      +extends Object
      Used to reference a type.

      Usage: new TypeRef<MyClass>(){}

      -
    -
    -
    - +
    + + + + +
      +
    • +

      get

      +
      public static <T> TypeRef<T> get​(Type type)
      Creates a reference to a given class type.
      -
      -
      Type Parameters:
      +
      +
      Type Parameters:
      T - Type to be referenced.
      -
      Parameters:
      +
      Parameters:
      type - Type to be referenced.
      -
      Returns:
      +
      Returns:
      Class type reference.
      -
    - + + + +
      +
    • +

      isPrimitive

      +
      public static <T> boolean isPrimitive​(TypeRef<T> typeRef)
      +
      Checks if the given TypeRef is of a primitive type + Similar to implementation of deserializePrimitives in the class ObjectSerializer + It considers only those types as primitives.
      +
      +
      Type Parameters:
      +
      T - Type to be referenced.
      +
      Parameters:
      +
      typeRef - Type to be referenced.
      +
      Returns:
      +
      truth value of whether the given type ref is a primitive reference or not.
      +
      +
    • +
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/Version.html b/docs/io/dapr/utils/Version.html new file mode 100644 index 000000000..8b757dba2 --- /dev/null +++ b/docs/io/dapr/utils/Version.html @@ -0,0 +1,315 @@ + + + + + +Version (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.utils
    +

    Class Version

    +
    +
    + +
    +
      +
    • +
      +
      public final class Version
      +extends Object
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          Version

          +
          public Version()
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getSdkVersion

          +
          public static String getSdkVersion()
          +
          Retrieves sdk version from resources.
          +
          +
          Returns:
          +
          String version of sdk.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/utils/class-use/DefaultContentTypeConverter.html b/docs/io/dapr/utils/class-use/DefaultContentTypeConverter.html new file mode 100644 index 000000000..941b1e687 --- /dev/null +++ b/docs/io/dapr/utils/class-use/DefaultContentTypeConverter.html @@ -0,0 +1,150 @@ + + + + + +Uses of Class io.dapr.utils.DefaultContentTypeConverter (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.utils.DefaultContentTypeConverter

    +
    +
    No usage of io.dapr.utils.DefaultContentTypeConverter
    +
    + + + diff --git a/docs/io/dapr/utils/class-use/DurationUtils.html b/docs/io/dapr/utils/class-use/DurationUtils.html index fc280fc91..9e4314f39 100644 --- a/docs/io/dapr/utils/class-use/DurationUtils.html +++ b/docs/io/dapr/utils/class-use/DurationUtils.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.utils.DurationUtils (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.utils.DurationUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.utils.DurationUtils

    +

    Uses of Class
    io.dapr.utils.DurationUtils

    -No usage of io.dapr.utils.DurationUtils
    +
    No usage of io.dapr.utils.DurationUtils
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/class-use/NetworkUtils.html b/docs/io/dapr/utils/class-use/NetworkUtils.html index 3484fa79c..87245f768 100644 --- a/docs/io/dapr/utils/class-use/NetworkUtils.html +++ b/docs/io/dapr/utils/class-use/NetworkUtils.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.utils.NetworkUtils (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.utils.NetworkUtils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.utils.NetworkUtils

    +

    Uses of Class
    io.dapr.utils.NetworkUtils

    -No usage of io.dapr.utils.NetworkUtils
    +
    No usage of io.dapr.utils.NetworkUtils
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/class-use/TypeRef.html b/docs/io/dapr/utils/class-use/TypeRef.html index bffa81ae6..0da017df7 100644 --- a/docs/io/dapr/utils/class-use/TypeRef.html +++ b/docs/io/dapr/utils/class-use/TypeRef.html @@ -2,433 +2,719 @@ - -Uses of Class io.dapr.utils.TypeRef (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.utils.TypeRef (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.utils.TypeRef

    -
    -
    Packages that use TypeRef
    - -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/class-use/Version.html b/docs/io/dapr/utils/class-use/Version.html new file mode 100644 index 000000000..1729e1f5c --- /dev/null +++ b/docs/io/dapr/utils/class-use/Version.html @@ -0,0 +1,150 @@ + + + + + +Uses of Class io.dapr.utils.Version (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.utils.Version

    +
    +
    No usage of io.dapr.utils.Version
    +
    + + + diff --git a/docs/io/dapr/utils/package-summary.html b/docs/io/dapr/utils/package-summary.html index 73df42a19..c4247bb4c 100644 --- a/docs/io/dapr/utils/package-summary.html +++ b/docs/io/dapr/utils/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.utils (dapr-sdk-parent 1.7.1 API) - + +io.dapr.utils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Package io.dapr.utils

    -
    -
    package io.dapr.utils
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/package-tree.html b/docs/io/dapr/utils/package-tree.html index 65d675478..86729a653 100644 --- a/docs/io/dapr/utils/package-tree.html +++ b/docs/io/dapr/utils/package-tree.html @@ -2,81 +2,168 @@ - -io.dapr.utils Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.utils Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.utils

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/utils/package-use.html b/docs/io/dapr/utils/package-use.html index 9f3ea79b0..46d673ac3 100644 --- a/docs/io/dapr/utils/package-use.html +++ b/docs/io/dapr/utils/package-use.html @@ -2,149 +2,278 @@ - -Uses of Package io.dapr.utils (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.utils (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.utils

    -
    Packages that use io.dapr.utils
    - -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub.html b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub.html new file mode 100644 index 000000000..cac570ba4 --- /dev/null +++ b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub.html @@ -0,0 +1,343 @@ + + + + + +AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class AppCallbackAlphaGrpc.AppCallbackAlphaBlockingStub

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub.html b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub.html new file mode 100644 index 000000000..9eaa014c3 --- /dev/null +++ b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub.html @@ -0,0 +1,343 @@ + + + + + +AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class AppCallbackAlphaGrpc.AppCallbackAlphaFutureStub

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaImplBase.html b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaImplBase.html new file mode 100644 index 000000000..3fe3702e8 --- /dev/null +++ b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaImplBase.html @@ -0,0 +1,347 @@ + + + + + +AppCallbackAlphaGrpc.AppCallbackAlphaImplBase (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class AppCallbackAlphaGrpc.AppCallbackAlphaImplBase

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.v1.AppCallbackAlphaGrpc.AppCallbackAlphaImplBase
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      io.grpc.BindableService
      +
      +
      +
      Enclosing class:
      +
      AppCallbackAlphaGrpc
      +
      +
      +
      public abstract static class AppCallbackAlphaGrpc.AppCallbackAlphaImplBase
      +extends Object
      +implements io.grpc.BindableService
      +
      + AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt
      + for Alpha RPCs.
      + 
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          AppCallbackAlphaImplBase

          +
          public AppCallbackAlphaImplBase()
          +
        • +
        +
      • +
      +
      + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaStub.html b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaStub.html new file mode 100644 index 000000000..cd657f99a --- /dev/null +++ b/docs/io/dapr/v1/AppCallbackAlphaGrpc.AppCallbackAlphaStub.html @@ -0,0 +1,345 @@ + + + + + +AppCallbackAlphaGrpc.AppCallbackAlphaStub (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class AppCallbackAlphaGrpc.AppCallbackAlphaStub

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/AppCallbackAlphaGrpc.html b/docs/io/dapr/v1/AppCallbackAlphaGrpc.html new file mode 100644 index 000000000..78a46f443 --- /dev/null +++ b/docs/io/dapr/v1/AppCallbackAlphaGrpc.html @@ -0,0 +1,439 @@ + + + + + +AppCallbackAlphaGrpc (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class AppCallbackAlphaGrpc

    +
    +
    + +
    +
      +
    • +
      +
      @Generated(value="by gRPC proto compiler (version 1.42.1)",
      +           comments="Source: appcallback.proto")
      +public final class AppCallbackAlphaGrpc
      +extends Object
      +
      + AppCallbackAlpha V1 is an optional extension to AppCallback V1 to opt
      + for Alpha RPCs.
      + 
      +
    • +
    +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackBlockingStub.html b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackBlockingStub.html index b321a776b..316061901 100644 --- a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackBlockingStub.html +++ b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackBlockingStub.html @@ -2,40 +2,59 @@ - -AppCallbackGrpc.AppCallbackBlockingStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackGrpc.AppCallbackBlockingStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackGrpc.AppCallbackBlockingStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackGrpc.AppCallbackBlockingStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractBlockingStub<AppCallbackGrpc.AppCallbackBlockingStub> -
    io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub
    -
    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      AppCallbackGrpc

      -
      public static final class AppCallbackGrpc.AppCallbackBlockingStub -extends io.grpc.stub.AbstractBlockingStub<AppCallbackGrpc.AppCallbackBlockingStub>
      +
      public static final class AppCallbackGrpc.AppCallbackBlockingStub
      +extends io.grpc.stub.AbstractBlockingStub<AppCallbackGrpc.AppCallbackBlockingStub>
        AppCallback V1 allows user application to interact with Dapr runtime.
        User application needs to implement AppCallback service if it needs to
        receive message from dapr runtime.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackFutureStub.html b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackFutureStub.html index a11a250b7..5df242973 100644 --- a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackFutureStub.html +++ b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackFutureStub.html @@ -2,40 +2,59 @@ - -AppCallbackGrpc.AppCallbackFutureStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackGrpc.AppCallbackFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackGrpc.AppCallbackFutureStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackGrpc.AppCallbackFutureStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractFutureStub<AppCallbackGrpc.AppCallbackFutureStub> -
    io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub
    -
    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      AppCallbackGrpc

      -
      public static final class AppCallbackGrpc.AppCallbackFutureStub -extends io.grpc.stub.AbstractFutureStub<AppCallbackGrpc.AppCallbackFutureStub>
      +
      public static final class AppCallbackGrpc.AppCallbackFutureStub
      +extends io.grpc.stub.AbstractFutureStub<AppCallbackGrpc.AppCallbackFutureStub>
        AppCallback V1 allows user application to interact with Dapr runtime.
        User application needs to implement AppCallback service if it needs to
        receive message from dapr runtime.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackImplBase.html b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackImplBase.html index 5e82a4ca5..1e8b7f11f 100644 --- a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackImplBase.html +++ b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackImplBase.html @@ -2,40 +2,59 @@ - -AppCallbackGrpc.AppCallbackImplBase (dapr-sdk-parent 1.7.1 API) - + +AppCallbackGrpc.AppCallbackImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackGrpc.AppCallbackImplBase

    -
    -
    java.lang.Object -
    io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
    +
    Package io.dapr.v1
    +

    Class AppCallbackGrpc.AppCallbackImplBase

    -
    -
    +
    + +
    +
      +
    • +
      All Implemented Interfaces:
      io.grpc.BindableService
      -
      +
      Enclosing class:
      AppCallbackGrpc

      -
      public abstract static class AppCallbackGrpc.AppCallbackImplBase -extends Object -implements io.grpc.BindableService
      +
      public abstract static class AppCallbackGrpc.AppCallbackImplBase
      +extends Object
      +implements io.grpc.BindableService
        AppCallback V1 allows user application to interact with Dapr runtime.
        User application needs to implement AppCallback service if it needs to
        receive message from dapr runtime.
        
      -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
       
      +
    • +
    - +
    + + + + + + + + +
      +
    • +

      onBindingEvent

      +
      public void onBindingEvent​(DaprAppCallbackProtos.BindingEventRequest request,
      +                           io.grpc.stub.StreamObserver<DaprAppCallbackProtos.BindingEventResponse> responseObserver)
        Listens events from the input bindings
        User application can save the states or send the events to the output
        bindings optionally by returning BindingEventResponse.
        
      -
    • -
    • -
      -

      bindService

      -
      public final io.grpc.ServerServiceDefinition bindService()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      bindService

      +
      public final io.grpc.ServerServiceDefinition bindService()
      +
      +
      Specified by:
      bindService in interface io.grpc.BindableService
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackStub.html b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackStub.html index 175184894..cbc7eab7e 100644 --- a/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackStub.html +++ b/docs/io/dapr/v1/AppCallbackGrpc.AppCallbackStub.html @@ -2,40 +2,59 @@ - -AppCallbackGrpc.AppCallbackStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackGrpc.AppCallbackStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackGrpc.AppCallbackStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackGrpc.AppCallbackStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractAsyncStub<AppCallbackGrpc.AppCallbackStub> -
    io.dapr.v1.AppCallbackGrpc.AppCallbackStub
    -
    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      AppCallbackGrpc

      -
      public static final class AppCallbackGrpc.AppCallbackStub -extends io.grpc.stub.AbstractAsyncStub<AppCallbackGrpc.AppCallbackStub>
      +
      public static final class AppCallbackGrpc.AppCallbackStub
      +extends io.grpc.stub.AbstractAsyncStub<AppCallbackGrpc.AppCallbackStub>
        AppCallback V1 allows user application to interact with Dapr runtime.
        User application needs to implement AppCallback service if it needs to
        receive message from dapr runtime.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackGrpc.html b/docs/io/dapr/v1/AppCallbackGrpc.html index 3d595bd3a..c6be9143f 100644 --- a/docs/io/dapr/v1/AppCallbackGrpc.html +++ b/docs/io/dapr/v1/AppCallbackGrpc.html @@ -2,40 +2,59 @@ - -AppCallbackGrpc (dapr-sdk-parent 1.7.1 API) - + +AppCallbackGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackGrpc

    -
    -
    java.lang.Object -
    io.dapr.v1.AppCallbackGrpc
    +
    Package io.dapr.v1
    +

    Class AppCallbackGrpc

    -
    +
    + +
    +
      +

    • -
      @Generated(value="by gRPC proto compiler (version 1.42.1)", +
      @Generated(value="by gRPC proto compiler (version 1.42.1)",
                  comments="Source: appcallback.proto")
      -public final class AppCallbackGrpc
      -extends Object
      +public final class AppCallbackGrpc +extends Object
        AppCallback V1 allows user application to interact with Dapr runtime.
        User application needs to implement AppCallback service if it needs to
        receive message from dapr runtime.
        
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      newFutureStub

      +
      public static AppCallbackGrpc.AppCallbackFutureStub newFutureStub​(io.grpc.Channel channel)
      Creates a new ListenableFuture-style stub that supports unary calls on the service
      -
    • -
    • -
      -

      getServiceDescriptor

      -
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
      -
      +
    + + + +
      +
    • +

      getServiceDescriptor

      +
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html index 2f570dcbb..34d97e540 100644 --- a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html +++ b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html @@ -2,40 +2,59 @@ - -AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractBlockingStub<AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub> -
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub
    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html index 99e0b841b..e60bce8a7 100644 --- a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html +++ b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html @@ -2,40 +2,59 @@ - -AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractFutureStub<AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub> -
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub
    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html index 6e4798926..6a4c59f2e 100644 --- a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html +++ b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html @@ -2,40 +2,59 @@ - -AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase (dapr-sdk-parent 1.7.1 API) - + +AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase

    +
    Package io.dapr.v1
    +

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase

    -
    java.lang.Object -
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      io.grpc.BindableService
      -
      +
      Enclosing class:
      AppCallbackHealthCheckGrpc

      -
      public abstract static class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase -extends Object -implements io.grpc.BindableService
      +
      public abstract static class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
      +extends Object
      +implements io.grpc.BindableService
        AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement
        the HealthCheck method.
        
      -
    -
    -
    - +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html index f2eabd00b..7a83fe06a 100644 --- a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html +++ b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html @@ -2,40 +2,59 @@ - -AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub (dapr-sdk-parent 1.7.1 API) - + +AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub

    +
    Package io.dapr.v1
    +

    Class AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractAsyncStub<AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub> -
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub
    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.html b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.html index 45c0ede95..55f3c2758 100644 --- a/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.html +++ b/docs/io/dapr/v1/AppCallbackHealthCheckGrpc.html @@ -2,40 +2,59 @@ - -AppCallbackHealthCheckGrpc (dapr-sdk-parent 1.7.1 API) - + +AppCallbackHealthCheckGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class AppCallbackHealthCheckGrpc

    +
    Package io.dapr.v1
    +

    Class AppCallbackHealthCheckGrpc

    -
    java.lang.Object -
    io.dapr.v1.AppCallbackHealthCheckGrpc
    -
    -
    +
    + +
    +
      +

    • -
      @Generated(value="by gRPC proto compiler (version 1.42.1)", +
      @Generated(value="by gRPC proto compiler (version 1.42.1)",
                  comments="Source: appcallback.proto")
      -public final class AppCallbackHealthCheckGrpc
      -extends Object
      +public final class AppCallbackHealthCheckGrpc +extends Object
        AppCallbackHealthCheck V1 is an optional extension to AppCallback V1 to implement
        the HealthCheck method.
        
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      newFutureStub

      +
      public static AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub newFutureStub​(io.grpc.Channel channel)
      Creates a new ListenableFuture-style stub that supports unary calls on the service
      -
    • -
    • -
      -

      getServiceDescriptor

      -
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
      -
      +
    + + + +
      +
    • +

      getServiceDescriptor

      +
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.ConfigurationItem.Builder.html b/docs/io/dapr/v1/CommonProtos.ConfigurationItem.Builder.html index db8256cd8..4b66e44ed 100644 --- a/docs/io/dapr/v1/CommonProtos.ConfigurationItem.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.ConfigurationItem.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.ConfigurationItem.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.ConfigurationItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.ConfigurationItem.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.ConfigurationItem.Builder> -
    io.dapr.v1.CommonProtos.ConfigurationItem.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.ConfigurationItem.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public CommonProtos.ConfigurationItem.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.ConfigurationItem.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.ConfigurationItem.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.ConfigurationItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.ConfigurationItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.ConfigurationItem build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.ConfigurationItem buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.ConfigurationItem buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.ConfigurationItem.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.ConfigurationItem.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.ConfigurationItem.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.ConfigurationItem.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public String getValue()
        Required. The value of configuration item.
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setValueBytes

      +
      public CommonProtos.ConfigurationItem.Builder setValueBytes​(com.google.protobuf.ByteString value)
        Required. The value of configuration item.
        
      string value = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for value to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getVersion

      -
      public String getVersion()
      +
    + + + +
      +
    • +

      getVersion

      +
      public String getVersion()
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersion in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The version.
      -
    • -
    • -
      -

      getVersionBytes

      -
      public com.google.protobuf.ByteString getVersionBytes()
      +
    + + + + + + + + + + + +
      +
    • +

      clearVersion

      +
      public CommonProtos.ConfigurationItem.Builder clearVersion()
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setVersionBytes

      -
      public CommonProtos.ConfigurationItem.Builder setVersionBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setVersionBytes

      +
      public CommonProtos.ConfigurationItem.Builder setVersionBytes​(com.google.protobuf.ByteString value)
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for version to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: CommonProtos.ConfigurationItemOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.ConfigurationItem.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.ConfigurationItem.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.ConfigurationItem.html b/docs/io/dapr/v1/CommonProtos.ConfigurationItem.html index e7bc6ab4e..8b6bb0a7c 100644 --- a/docs/io/dapr/v1/CommonProtos.ConfigurationItem.html +++ b/docs/io/dapr/v1/CommonProtos.ConfigurationItem.html @@ -2,40 +2,59 @@ - -CommonProtos.ConfigurationItem (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.ConfigurationItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.ConfigurationItem

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.ConfigurationItem
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.ConfigurationItem

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.ConfigurationItem
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public String getValue()
        Required. The value of configuration item.
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + +
      +
    • +

      getValueBytes

      +
      public com.google.protobuf.ByteString getValueBytes()
        Required. The value of configuration item.
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValueBytes in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for value.
      -
    • -
    • -
      -

      getVersion

      -
      public String getVersion()
      +
    + + + +
      +
    • +

      getVersion

      +
      public String getVersion()
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersion in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The version.
      -
    • -
    • -
      -

      getVersionBytes

      -
      public com.google.protobuf.ByteString getVersionBytes()
      +
    + + + +
      +
    • +

      getVersionBytes

      +
      public com.google.protobuf.ByteString getVersionBytes()
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersionBytes in interface CommonProtos.ConfigurationItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for version.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: CommonProtos.ConfigurationItemOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface CommonProtos.ConfigurationItemOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.ConfigurationItem parseFrom​(ByteBuffer data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.ConfigurationItem parseFrom​(ByteBuffer data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.ConfigurationItem parseFrom​(com.google.protobuf.ByteString data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.ConfigurationItem parseFrom​(com.google.protobuf.ByteString data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.ConfigurationItem parseFrom​(byte[] data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.ConfigurationItem parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.ConfigurationItem.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.ConfigurationItem.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.ConfigurationItem.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.ConfigurationItem getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.ConfigurationItem> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.ConfigurationItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.ConfigurationItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.ConfigurationItemOrBuilder.html b/docs/io/dapr/v1/CommonProtos.ConfigurationItemOrBuilder.html index 8f1152a11..ce50fa03d 100644 --- a/docs/io/dapr/v1/CommonProtos.ConfigurationItemOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.ConfigurationItemOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.ConfigurationItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.ConfigurationItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.ConfigurationItemOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.ConfigurationItemOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface CommonProtos.ConfigurationItemOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getValue

          -
          String getValue()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getValue

              +
              String getValue()
                Required. The value of configuration item.
                
              string value = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The value.
              -
        • -
        • -
          -

          getValueBytes

          -
          com.google.protobuf.ByteString getValueBytes()
          +
        + + + +
          +
        • +

          getValueBytes

          +
          com.google.protobuf.ByteString getValueBytes()
            Required. The value of configuration item.
            
          string value = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for value.
          -
      • -
      • -
        -

        getVersion

        -
        String getVersion()
        +
      + + + +
        +
      • +

        getVersion

        +
        String getVersion()
          Version is response only and cannot be fetched. Store is not expected to keep all versions available
          
        string version = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The version.
        -
    • -
    • -
      -

      getVersionBytes

      -
      com.google.protobuf.ByteString getVersionBytes()
      +
    + + + +
      +
    • +

      getVersionBytes

      +
      com.google.protobuf.ByteString getVersionBytes()
        Version is response only and cannot be fetched. Store is not expected to keep all versions available
        
      string version = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for version.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        the metadata which will be passed to/from configuration store component.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.Etag.Builder.html b/docs/io/dapr/v1/CommonProtos.Etag.Builder.html index 9d50b9a51..65a4a845f 100644 --- a/docs/io/dapr/v1/CommonProtos.Etag.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.Etag.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.Etag.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.Etag.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.Etag.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder> -
    io.dapr.v1.CommonProtos.Etag.Builder
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.Etag.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.Etag getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public CommonProtos.Etag build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.Etag build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.Etag buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.Etag buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      -
      public CommonProtos.Etag.Builder clone()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clone

      +
      public CommonProtos.Etag.Builder clone()
      +
      +
      Specified by:
      clone in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clone in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clone in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      setField

      -
      public CommonProtos.Etag.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setField

      +
      public CommonProtos.Etag.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                          Object value)
      +
      +
      Specified by:
      setField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      clearField

      -
      public CommonProtos.Etag.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearField

      +
      public CommonProtos.Etag.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
      +
      +
      Specified by:
      clearField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      clearOneof

      -
      public CommonProtos.Etag.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearOneof

      +
      public CommonProtos.Etag.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public CommonProtos.Etag.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public CommonProtos.Etag.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                  int index,
      +                                                  Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public CommonProtos.Etag.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      addRepeatedField

      +
      public CommonProtos.Etag.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                  Object value)
      +
      +
      Specified by:
      addRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.Etag.Builder mergeFrom(com.google.protobuf.Message other)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.Etag.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.Etag.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                    throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.Etag.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public String getValue()
        value sets the etag value
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.EtagOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + + + + + +
      +
    • +

      setValue

      +
      public CommonProtos.Etag.Builder setValue​(String value)
        value sets the etag value
        
      string value = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The value to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearValue

      -
      public CommonProtos.Etag.Builder clearValue()
      +
    + + + +
      +
    • +

      clearValue

      +
      public CommonProtos.Etag.Builder clearValue()
        value sets the etag value
        
      string value = 1;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setValueBytes

      -
      public CommonProtos.Etag.Builder setValueBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setValueBytes

      +
      public CommonProtos.Etag.Builder setValueBytes​(com.google.protobuf.ByteString value)
        value sets the etag value
        
      string value = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for value to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final CommonProtos.Etag.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.Etag.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.Etag.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.Etag.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.Etag.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.Etag.html b/docs/io/dapr/v1/CommonProtos.Etag.html index 9b1db0918..9020aa0fb 100644 --- a/docs/io/dapr/v1/CommonProtos.Etag.html +++ b/docs/io/dapr/v1/CommonProtos.Etag.html @@ -2,40 +2,59 @@ - -CommonProtos.Etag (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.Etag (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.Etag

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.Etag
    +
    Package io.dapr.v1
    +

    Class CommonProtos.Etag

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.Etag
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.EtagOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.EtagOrBuilder, Serializable
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static final class CommonProtos.Etag -extends com.google.protobuf.GeneratedMessageV3 -implements CommonProtos.EtagOrBuilder
      +
      public static final class CommonProtos.Etag
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.EtagOrBuilder
        Etag represents a state item version
        
      Protobuf type dapr.proto.common.v1.Etag
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class CommonProtos.Etag.Builder
        Etag represents a state item version
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intVALUE_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object obj)
      -
       
      - - -
       
      - - -
       
      -
      static com.google.protobuf.Descriptors.Descriptor
      - -
       
      -
      com.google.protobuf.Parser<CommonProtos.Etag>
      - -
       
      -
      int
      - -
       
      -
      com.google.protobuf.UnknownFieldSet
      - -
       
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          VALUE_FIELD_NUMBER

          -
          public static final int VALUE_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        newInstance

        -
        protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        -
        -
        Overrides:
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            newInstance

            +
            protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
            +
            +
            Overrides:
            newInstance in class com.google.protobuf.GeneratedMessageV3
            -
      • -
      • -
        -

        getUnknownFields

        -
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        -
        -
        Specified by:
        +
      + + + +
        +
      • +

        getUnknownFields

        +
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        +
        +
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        -
        Overrides:
        +
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
        -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public String getValue()
        value sets the etag value
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.EtagOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + +
      +
    • +

      getValueBytes

      +
      public com.google.protobuf.ByteString getValueBytes()
        value sets the etag value
        
      string value = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValueBytes in interface CommonProtos.EtagOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for value.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(ByteBuffer data)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(ByteBuffer data,
      +                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(com.google.protobuf.ByteString data)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(com.google.protobuf.ByteString data,
      +                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(byte[] data)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.Etag parseFrom​(byte[] data,
      +                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.Etag parseFrom(InputStream input) - throws IOException
      -
      -
      Throws:
      -
      IOException
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public CommonProtos.Etag.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static CommonProtos.Etag.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.Etag.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.Etag.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.Etag.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.Etag getDefaultInstance()
      -
      +
    + + + + + + + +
      +
    • +

      parser

      +
      public static com.google.protobuf.Parser<CommonProtos.Etag> parser()
    • -
    • -
      -

      getParserForType

      -
      public com.google.protobuf.Parser<CommonProtos.Etag> getParserForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.Etag> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.Etag getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.Etag getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.EtagOrBuilder.html b/docs/io/dapr/v1/CommonProtos.EtagOrBuilder.html index e6e25034b..d947f57ea 100644 --- a/docs/io/dapr/v1/CommonProtos.EtagOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.EtagOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.EtagOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.EtagOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.EtagOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.EtagOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      CommonProtos.Etag, CommonProtos.Etag.Builder
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static interface CommonProtos.EtagOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface CommonProtos.EtagOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetValue()
        value sets the etag value
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetValueBytes()
        value sets the etag value
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getValue

          -
          String getValue()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getValue

              +
              String getValue()
                value sets the etag value
                
              string value = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The value.
              -
        • -
        • -
          -

          getValueBytes

          -
          com.google.protobuf.ByteString getValueBytes()
          +
        + + + +
          +
        • +

          getValueBytes

          +
          com.google.protobuf.ByteString getValueBytes()
            value sets the etag value
            
          string value = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for value.
          -
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.HTTPExtension.Builder.html b/docs/io/dapr/v1/CommonProtos.HTTPExtension.Builder.html index f7b9e30c2..fa3a51b0e 100644 --- a/docs/io/dapr/v1/CommonProtos.HTTPExtension.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.HTTPExtension.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.HTTPExtension.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.HTTPExtension.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.HTTPExtension.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.HTTPExtension.Builder> -
    io.dapr.v1.CommonProtos.HTTPExtension.Builder
    +
    Package io.dapr.v1
    +

    Class CommonProtos.HTTPExtension.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.HTTPExtension getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.HTTPExtension build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.HTTPExtension buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.HTTPExtension buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setRepeatedField

      +
      public CommonProtos.HTTPExtension.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                           int index,
      +                                                           Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.HTTPExtension.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public CommonProtos.HTTPExtension.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.HTTPExtension.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.HTTPExtension.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.HTTPExtension.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.HTTPExtension.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getVerbValue

      -
      public int getVerbValue()
      +
    + + + + + + + +
      +
    • +

      setVerbValue

      +
      public CommonProtos.HTTPExtension.Builder setVerbValue​(int value)
        Required. HTTP verb.
        
      .dapr.proto.common.v1.HTTPExtension.Verb verb = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The enum numeric value on the wire for verb to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getVerb

      - +
    + + + + + + + + + + + +
      +
    • +

      clearVerb

      +
      public CommonProtos.HTTPExtension.Builder clearVerb()
        Required. HTTP verb.
        
      .dapr.proto.common.v1.HTTPExtension.Verb verb = 1;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getQuerystring

      -
      public String getQuerystring()
      +
    + + + +
      +
    • +

      getQuerystring

      +
      public String getQuerystring()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuerystring in interface CommonProtos.HTTPExtensionOrBuilder
      -
      Returns:
      +
      Returns:
      The querystring.
      -
    • -
    • -
      -

      getQuerystringBytes

      -
      public com.google.protobuf.ByteString getQuerystringBytes()
      +
    + + + +
      +
    • +

      getQuerystringBytes

      +
      public com.google.protobuf.ByteString getQuerystringBytes()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuerystringBytes in interface CommonProtos.HTTPExtensionOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for querystring.
      -
    • -
    • -
      -

      setQuerystring

      -
      public CommonProtos.HTTPExtension.Builder setQuerystring(String value)
      +
    + + + +
      +
    • +

      setQuerystring

      +
      public CommonProtos.HTTPExtension.Builder setQuerystring​(String value)
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The querystring to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearQuerystring

      -
      public CommonProtos.HTTPExtension.Builder clearQuerystring()
      +
    + + + +
      +
    • +

      clearQuerystring

      +
      public CommonProtos.HTTPExtension.Builder clearQuerystring()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setQuerystringBytes

      -
      public CommonProtos.HTTPExtension.Builder setQuerystringBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setQuerystringBytes

      +
      public CommonProtos.HTTPExtension.Builder setQuerystringBytes​(com.google.protobuf.ByteString value)
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for querystring to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final CommonProtos.HTTPExtension.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.HTTPExtension.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.HTTPExtension.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.HTTPExtension.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.HTTPExtension.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.HTTPExtension.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.HTTPExtension.Verb.html b/docs/io/dapr/v1/CommonProtos.HTTPExtension.Verb.html index a61c2bd30..9b32fd29e 100644 --- a/docs/io/dapr/v1/CommonProtos.HTTPExtension.Verb.html +++ b/docs/io/dapr/v1/CommonProtos.HTTPExtension.Verb.html @@ -2,40 +2,59 @@ - -CommonProtos.HTTPExtension.Verb (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.HTTPExtension.Verb (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class CommonProtos.HTTPExtension.Verb

    +
    Package io.dapr.v1
    +

    Enum CommonProtos.HTTPExtension.Verb

    -
    java.lang.Object -
    java.lang.Enum<CommonProtos.HTTPExtension.Verb> -
    io.dapr.v1.CommonProtos.HTTPExtension.Verb
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      NONE_VALUE

      -
      public static final int NONE_VALUE
      +
      +
    • -
    • -
      -

      GET_VALUE

      -
      public static final int GET_VALUE
      +
    + + + +
      +
    • +

      GET_VALUE

      +
      public static final int GET_VALUE
      GET = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    HEAD_VALUE

    -
    public static final int HEAD_VALUE
    + + + + +
      +
    • +

      HEAD_VALUE

      +
      public static final int HEAD_VALUE
      HEAD = 2;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    POST_VALUE

    -
    public static final int POST_VALUE
    + + + + +
      +
    • +

      POST_VALUE

      +
      public static final int POST_VALUE
      POST = 3;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    PUT_VALUE

    -
    public static final int PUT_VALUE
    + + + + +
      +
    • +

      PUT_VALUE

      +
      public static final int PUT_VALUE
      PUT = 4;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    DELETE_VALUE

    -
    public static final int DELETE_VALUE
    + + + + +
      +
    • +

      DELETE_VALUE

      +
      public static final int DELETE_VALUE
      DELETE = 5;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    CONNECT_VALUE

    -
    public static final int CONNECT_VALUE
    + + + + +
      +
    • +

      CONNECT_VALUE

      +
      public static final int CONNECT_VALUE
      CONNECT = 6;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    OPTIONS_VALUE

    -
    public static final int OPTIONS_VALUE
    + + + + +
      +
    • +

      OPTIONS_VALUE

      +
      public static final int OPTIONS_VALUE
      OPTIONS = 7;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    TRACE_VALUE

    -
    public static final int TRACE_VALUE
    + + + + +
      +
    • +

      TRACE_VALUE

      +
      public static final int TRACE_VALUE
      TRACE = 8;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    PATCH_VALUE

    -
    public static final int PATCH_VALUE
    + + + + +
      +
    • +

      PATCH_VALUE

      +
      public static final int PATCH_VALUE
      PATCH = 9;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      -
      public static CommonProtos.HTTPExtension.Verb[] values()
      -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static CommonProtos.HTTPExtension.Verb[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (CommonProtos.HTTPExtension.Verb c : CommonProtos.HTTPExtension.Verb.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.HTTPExtension.Verb valueOf(String name)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.HTTPExtension.Verb valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    -
    @Deprecated -public static CommonProtos.HTTPExtension.Verb valueOf(int value)
    -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static CommonProtos.HTTPExtension.Verb valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    -
    public static CommonProtos.HTTPExtension.Verb forNumber(int value)
    -
    -
    Parameters:
    + + + + +
      +
    • +

      forNumber

      +
      public static CommonProtos.HTTPExtension.Verb forNumber​(int value)
      +
      +
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      -
      Returns:
      +
      Returns:
      The enum associated with the given numeric wire value.
      -
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.HTTPExtension.Verb> internalGetValueMap()
    -
    + + + + +
      +
    • +

      internalGetValueMap

      +
      public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.HTTPExtension.Verb> internalGetValueMap()
    • -
    • -
      -

      getValueDescriptor

      -
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.HTTPExtension.Verb valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.HTTPExtension.Verb valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.HTTPExtension.html b/docs/io/dapr/v1/CommonProtos.HTTPExtension.html index 793fd7fdb..544719cd1 100644 --- a/docs/io/dapr/v1/CommonProtos.HTTPExtension.html +++ b/docs/io/dapr/v1/CommonProtos.HTTPExtension.html @@ -2,40 +2,59 @@ - -CommonProtos.HTTPExtension (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.HTTPExtension (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.HTTPExtension

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.HTTPExtension
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.HTTPExtension

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.HTTPExtension
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.HTTPExtensionOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.HTTPExtensionOrBuilder, Serializable
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static final class CommonProtos.HTTPExtension -extends com.google.protobuf.GeneratedMessageV3 -implements CommonProtos.HTTPExtensionOrBuilder
      +
      public static final class CommonProtos.HTTPExtension
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.HTTPExtensionOrBuilder
        HTTPExtension includes HTTP verb and querystring
        when Dapr runtime delivers HTTP content.
      @@ -109,667 +170,976 @@ 

      Class CommonProtos.HT

      Protobuf type dapr.proto.common.v1.HTTPExtension
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getVerbValue

      -
      public int getVerbValue()
      +
    + + + + + + + + + + + +
      +
    • +

      getQuerystring

      +
      public String getQuerystring()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuerystring in interface CommonProtos.HTTPExtensionOrBuilder
      -
      Returns:
      +
      Returns:
      The querystring.
      -
    • -
    • -
      -

      getQuerystringBytes

      -
      public com.google.protobuf.ByteString getQuerystringBytes()
      +
    + + + +
      +
    • +

      getQuerystringBytes

      +
      public com.google.protobuf.ByteString getQuerystringBytes()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuerystringBytes in interface CommonProtos.HTTPExtensionOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for querystring.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.HTTPExtension parseFrom​(ByteBuffer data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.HTTPExtension parseFrom​(ByteBuffer data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.HTTPExtension parseFrom​(com.google.protobuf.ByteString data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.HTTPExtension parseFrom​(com.google.protobuf.ByteString data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.HTTPExtension parseFrom​(byte[] data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.HTTPExtension parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public CommonProtos.HTTPExtension.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static CommonProtos.HTTPExtension.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.HTTPExtension.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.HTTPExtension.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.HTTPExtension.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.HTTPExtension getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.HTTPExtension> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.HTTPExtension getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.HTTPExtension getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.HTTPExtensionOrBuilder.html b/docs/io/dapr/v1/CommonProtos.HTTPExtensionOrBuilder.html index 7fc3fbde1..543bf3084 100644 --- a/docs/io/dapr/v1/CommonProtos.HTTPExtensionOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.HTTPExtensionOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.HTTPExtensionOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.HTTPExtensionOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.HTTPExtensionOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.HTTPExtensionOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface CommonProtos.HTTPExtensionOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetQuerystring()
        Optional.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetQuerystringBytes()
        Optional.
        - - - -
        +
        CommonProtos.HTTPExtension.VerbgetVerb()
        Required.
        - -
        int
        - -
        +
        intgetVerbValue()
        Required.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getVerbValue

          -
          int getVerbValue()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getVerbValue

              +
              int getVerbValue()
                Required. HTTP verb.
                
              .dapr.proto.common.v1.HTTPExtension.Verb verb = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The enum numeric value on the wire for verb.
              -
        • -
        • -
          -

          getVerb

          - +
        + + + +
          +
        • +

          getVerb

          +
          CommonProtos.HTTPExtension.Verb getVerb()
            Required. HTTP verb.
            
          .dapr.proto.common.v1.HTTPExtension.Verb verb = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The verb.
          -
      • -
      • -
        -

        getQuerystring

        -
        String getQuerystring()
        +
      + + + +
        +
      • +

        getQuerystring

        +
        String getQuerystring()
          Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
          
        string querystring = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The querystring.
        -
    • -
    • -
      -

      getQuerystringBytes

      -
      com.google.protobuf.ByteString getQuerystringBytes()
      +
    + + + +
      +
    • +

      getQuerystringBytes

      +
      com.google.protobuf.ByteString getQuerystringBytes()
        Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
        
      string querystring = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for querystring.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeRequest.Builder.html b/docs/io/dapr/v1/CommonProtos.InvokeRequest.Builder.html index 71879b9cc..c90ca15d8 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeRequest.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeRequest.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.InvokeRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeRequest.Builder> -
    io.dapr.v1.CommonProtos.InvokeRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.InvokeRequest.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.InvokeRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.InvokeRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.InvokeRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.InvokeRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setRepeatedField

      +
      public CommonProtos.InvokeRequest.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                           int index,
      +                                                           Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeRequest.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public CommonProtos.InvokeRequest.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.InvokeRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.InvokeRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.InvokeRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getMethod

      -
      public String getMethod()
      +
    + + + +
      +
    • +

      getMethod

      +
      public String getMethod()
        Required. method is a method name which will be invoked by caller.
        
      string method = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethod in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The method.
      -
    • -
    • -
      -

      getMethodBytes

      -
      public com.google.protobuf.ByteString getMethodBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setMethodBytes

      +
      public CommonProtos.InvokeRequest.Builder setMethodBytes​(com.google.protobuf.ByteString value)
        Required. method is a method name which will be invoked by caller.
        
      string method = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for method to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasData

      -
      public boolean hasData()
      +
    + + + +
      +
    • +

      hasData

      +
      public boolean hasData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasData in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the data field is set.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.Any getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.Any getData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      setData

      -
      public CommonProtos.InvokeRequest.Builder setData(com.google.protobuf.Any value)
      +
    + + + +
      +
    • +

      setData

      +
      public CommonProtos.InvokeRequest.Builder setData​(com.google.protobuf.Any value)
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      setData

      -
      public CommonProtos.InvokeRequest.Builder setData(com.google.protobuf.Any.Builder builderForValue)
      +
    + + + +
      +
    • +

      setData

      +
      public CommonProtos.InvokeRequest.Builder setData​(com.google.protobuf.Any.Builder builderForValue)
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      mergeData

      -
      public CommonProtos.InvokeRequest.Builder mergeData(com.google.protobuf.Any value)
      +
    + + + +
      +
    • +

      mergeData

      +
      public CommonProtos.InvokeRequest.Builder mergeData​(com.google.protobuf.Any value)
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      clearData

      - +
    + + + +
      +
    • +

      clearData

      +
      public CommonProtos.InvokeRequest.Builder clearData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      getDataBuilder

      -
      public com.google.protobuf.Any.Builder getDataBuilder()
      +
    + + + +
      +
    • +

      getDataBuilder

      +
      public com.google.protobuf.Any.Builder getDataBuilder()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      getDataOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      +
    + + + +
      +
    • +

      getDataOrBuilder

      +
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrBuilder in interface CommonProtos.InvokeRequestOrBuilder
      -
    • -
    • -
      -

      getContentType

      -
      public String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      public String getContentType()
        The type of data content.
        This field is required if data delivers http request body
      @@ -781,18 +1058,21 @@ 

      getContentType

      string content_type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentType in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      public com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + +
      +
    • +

      getContentTypeBytes

      +
      public com.google.protobuf.ByteString getContentTypeBytes()
        The type of data content.
        This field is required if data delivers http request body
      @@ -800,18 +1080,21 @@ 

      getContentTypeBytes

      string content_type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentTypeBytes in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for contentType.
      -
    • -
    • -
      -

      setContentType

      -
      public CommonProtos.InvokeRequest.Builder setContentType(String value)
      +
    + + + +
      +
    • +

      setContentType

      +
      public CommonProtos.InvokeRequest.Builder setContentType​(String value)
        The type of data content.
        This field is required if data delivers http request body
      @@ -819,18 +1102,21 @@ 

      setContentType

      string content_type = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The contentType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearContentType

      -
      public CommonProtos.InvokeRequest.Builder clearContentType()
      +
    + + + +
      +
    • +

      clearContentType

      +
      public CommonProtos.InvokeRequest.Builder clearContentType()
        The type of data content.
        This field is required if data delivers http request body
      @@ -838,16 +1124,19 @@ 

      clearContentType

      string content_type = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setContentTypeBytes

      -
      public CommonProtos.InvokeRequest.Builder setContentTypeBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setContentTypeBytes

      +
      public CommonProtos.InvokeRequest.Builder setContentTypeBytes​(com.google.protobuf.ByteString value)
        The type of data content.
        This field is required if data delivers http request body
      @@ -855,18 +1144,21 @@ 

      setContentTypeBytes

      string content_type = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for contentType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasHttpExtension

      -
      public boolean hasHttpExtension()
      +
    + + + +
      +
    • +

      hasHttpExtension

      +
      public boolean hasHttpExtension()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -874,18 +1166,21 @@ 

      hasHttpExtension

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasHttpExtension in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the httpExtension field is set.
      -
    • -
    • -
      -

      getHttpExtension

      -
      public CommonProtos.HTTPExtension getHttpExtension()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      clearHttpExtension

      +
      public CommonProtos.InvokeRequest.Builder clearHttpExtension()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -951,12 +1258,15 @@ 

      clearHttpExtension

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
    • -
    • -
      -

      getHttpExtensionBuilder

      -
      public CommonProtos.HTTPExtension.Builder getHttpExtensionBuilder()
      +
    + + + +
      +
    • +

      getHttpExtensionBuilder

      +
      public CommonProtos.HTTPExtension.Builder getHttpExtensionBuilder()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -964,12 +1274,15 @@ 

      getHttpExtensionBuilder

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
    • -
    • -
      -

      getHttpExtensionOrBuilder

      -
      public CommonProtos.HTTPExtensionOrBuilder getHttpExtensionOrBuilder()
      +
    + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.InvokeRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.InvokeRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.InvokeRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeRequest.html b/docs/io/dapr/v1/CommonProtos.InvokeRequest.html index 927edf680..f8e6181ee 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeRequest.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeRequest.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeRequest (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.InvokeRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.InvokeRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.InvokeRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.InvokeRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.InvokeRequestOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.InvokeRequestOrBuilder, Serializable
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static final class CommonProtos.InvokeRequest -extends com.google.protobuf.GeneratedMessageV3 -implements CommonProtos.InvokeRequestOrBuilder
      +
      public static final class CommonProtos.InvokeRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.InvokeRequestOrBuilder
        InvokeRequest is the message to invoke a method with the data.
        This message is used in InvokeService of Dapr gRPC Service and OnInvoke
      @@ -105,445 +166,644 @@ 

      Class CommonProtos.In

      Protobuf type dapr.proto.common.v1.InvokeRequest
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      HTTP_EXTENSION_FIELD_NUMBER

      +
      public static final int HTTP_EXTENSION_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getMethod

      -
      public String getMethod()
      +
    + + + +
      +
    • +

      getMethod

      +
      public String getMethod()
        Required. method is a method name which will be invoked by caller.
        
      string method = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethod in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The method.
      -
    • -
    • -
      -

      getMethodBytes

      -
      public com.google.protobuf.ByteString getMethodBytes()
      +
    + + + +
      +
    • +

      getMethodBytes

      +
      public com.google.protobuf.ByteString getMethodBytes()
        Required. method is a method name which will be invoked by caller.
        
      string method = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethodBytes in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for method.
      -
    • -
    • -
      -

      hasData

      -
      public boolean hasData()
      +
    + + + +
      +
    • +

      hasData

      +
      public boolean hasData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasData in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the data field is set.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.Any getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.Any getData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getDataOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      +
    + + + +
      +
    • +

      getDataOrBuilder

      +
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrBuilder in interface CommonProtos.InvokeRequestOrBuilder
      -
    • -
    • -
      -

      getContentType

      -
      public String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      public String getContentType()
        The type of data content.
        This field is required if data delivers http request body
      @@ -551,18 +811,21 @@ 

      getContentType

      string content_type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentType in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      public com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + +
      +
    • +

      getContentTypeBytes

      +
      public com.google.protobuf.ByteString getContentTypeBytes()
        The type of data content.
        This field is required if data delivers http request body
      @@ -570,18 +833,21 @@ 

      getContentTypeBytes

      string content_type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentTypeBytes in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for contentType.
      -
    • -
    • -
      -

      hasHttpExtension

      -
      public boolean hasHttpExtension()
      +
    + + + +
      +
    • +

      hasHttpExtension

      +
      public boolean hasHttpExtension()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -589,18 +855,21 @@ 

      hasHttpExtension

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasHttpExtension in interface CommonProtos.InvokeRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the httpExtension field is set.
      -
    • -
    • -
      -

      getHttpExtension

      -
      public CommonProtos.HTTPExtension getHttpExtension()
      +
    + + + + + + + +
      +
    • +

      getHttpExtensionOrBuilder

      +
      public CommonProtos.HTTPExtensionOrBuilder getHttpExtensionOrBuilder()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -627,309 +899,445 @@ 

      getHttpExtensionOrBuilder

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getHttpExtensionOrBuilder in interface CommonProtos.InvokeRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeRequest parseFrom​(ByteBuffer data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeRequest parseFrom​(ByteBuffer data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeRequest parseFrom​(byte[] data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public CommonProtos.InvokeRequest.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static CommonProtos.InvokeRequest.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.InvokeRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.InvokeRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.InvokeRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.InvokeRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.InvokeRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.InvokeRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.InvokeRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeRequestOrBuilder.html b/docs/io/dapr/v1/CommonProtos.InvokeRequestOrBuilder.html index 48145a6dc..081ab5ba7 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeRequestOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeRequestOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.InvokeRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.InvokeRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface CommonProtos.InvokeRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getMethod

          -
          String getMethod()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getMethod

              +
              String getMethod()
                Required. method is a method name which will be invoked by caller.
                
              string method = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The method.
              -
        • -
        • -
          -

          getMethodBytes

          -
          com.google.protobuf.ByteString getMethodBytes()
          +
        + + + +
          +
        • +

          getMethodBytes

          +
          com.google.protobuf.ByteString getMethodBytes()
            Required. method is a method name which will be invoked by caller.
            
          string method = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for method.
          -
      • -
      • -
        -

        hasData

        -
        boolean hasData()
        +
      + + + +
        +
      • +

        hasData

        +
        boolean hasData()
        - Required. Bytes value or Protobuf message which caller sent.
        + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
          Dapr treats Any.value as bytes type if Any.type_url is unset.
          
        .google.protobuf.Any data = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        Whether the data field is set.
        -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.Any getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.Any getData()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getDataOrBuilder

      -
      com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      +
    + + + +
      +
    • +

      getDataOrBuilder

      +
      com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      - Required. Bytes value or Protobuf message which caller sent.
      + Required in unary RPCs. Bytes value or Protobuf message which caller sent.
        Dapr treats Any.value as bytes type if Any.type_url is unset.
        
      .google.protobuf.Any data = 2;
      -
    • -
    • -
      -

      getContentType

      -
      String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      String getContentType()
        The type of data content.
        This field is required if data delivers http request body
      @@ -271,16 +373,19 @@ 

      getContentType

      string content_type = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + +
      +
    • +

      getContentTypeBytes

      +
      com.google.protobuf.ByteString getContentTypeBytes()
        The type of data content.
        This field is required if data delivers http request body
      @@ -288,16 +393,19 @@ 

      getContentTypeBytes

      string content_type = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for contentType.
      -
    • -
    • -
      -

      hasHttpExtension

      -
      boolean hasHttpExtension()
      +
    + + + +
      +
    • +

      hasHttpExtension

      +
      boolean hasHttpExtension()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -305,16 +413,19 @@ 

      hasHttpExtension

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the httpExtension field is set.
      -
    • -
    • -
      -

      getHttpExtension

      -
      CommonProtos.HTTPExtension getHttpExtension()
      +
    + + + +
      +
    • +

      getHttpExtension

      +
      CommonProtos.HTTPExtension getHttpExtension()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -322,16 +433,19 @@ 

      getHttpExtension

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The httpExtension.
      -
    • -
    • -
      -

      getHttpExtensionOrBuilder

      -
      CommonProtos.HTTPExtensionOrBuilder getHttpExtensionOrBuilder()
      +
    + + + +
      +
    • +

      getHttpExtensionOrBuilder

      +
      CommonProtos.HTTPExtensionOrBuilder getHttpExtensionOrBuilder()
        HTTP specific fields if request conveys http-compatible request.
        This field is required for http-compatible request. Otherwise,
      @@ -339,20 +453,78 @@ 

      getHttpExtensionOrBuilder

      .dapr.proto.common.v1.HTTPExtension http_extension = 4;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeResponse.Builder.html b/docs/io/dapr/v1/CommonProtos.InvokeResponse.Builder.html index f21efa934..6994f0485 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeResponse.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeResponse.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.InvokeResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeResponse.Builder> -
    io.dapr.v1.CommonProtos.InvokeResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.InvokeResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.InvokeResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.InvokeResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.InvokeResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.InvokeResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.InvokeResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.InvokeResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.InvokeResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      hasData

      -
      public boolean hasData()
      +
    + + + +
      +
    • +

      hasData

      +
      public boolean hasData()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasData in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the data field is set.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.Any getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.Any getData()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      setData

      -
      public CommonProtos.InvokeResponse.Builder setData(com.google.protobuf.Any value)
      +
    + + + +
      +
    • +

      setData

      +
      public CommonProtos.InvokeResponse.Builder setData​(com.google.protobuf.Any value)
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
    • -
    • -
      -

      setData

      -
      public CommonProtos.InvokeResponse.Builder setData(com.google.protobuf.Any.Builder builderForValue)
      +
    + + + +
      +
    • +

      setData

      +
      public CommonProtos.InvokeResponse.Builder setData​(com.google.protobuf.Any.Builder builderForValue)
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
    • -
    • -
      -

      mergeData

      -
      public CommonProtos.InvokeResponse.Builder mergeData(com.google.protobuf.Any value)
      +
    + + + + + + + +
      +
    • +

      clearData

      +
      public CommonProtos.InvokeResponse.Builder clearData()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
    • -
    • -
      -

      getDataBuilder

      -
      public com.google.protobuf.Any.Builder getDataBuilder()
      +
    + + + +
      +
    • +

      getDataBuilder

      +
      public com.google.protobuf.Any.Builder getDataBuilder()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
    • -
    • -
      -

      getDataOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      +
    + + + +
      +
    • +

      getDataOrBuilder

      +
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrBuilder in interface CommonProtos.InvokeResponseOrBuilder
      -
    • -
    • -
      -

      getContentType

      -
      public String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      public String getContentType()
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentType in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      public com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setContentTypeBytes

      +
      public CommonProtos.InvokeResponse.Builder setContentTypeBytes​(com.google.protobuf.ByteString value)
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for contentType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final CommonProtos.InvokeResponse.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.InvokeResponse.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeResponse.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.InvokeResponse.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.InvokeResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.InvokeResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeResponse.html b/docs/io/dapr/v1/CommonProtos.InvokeResponse.html index 7c76f944b..b98307a3a 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeResponse.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeResponse.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeResponse (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.InvokeResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.InvokeResponse
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.InvokeResponse

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.InvokeResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.InvokeResponseOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.InvokeResponseOrBuilder, Serializable
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static final class CommonProtos.InvokeResponse -extends com.google.protobuf.GeneratedMessageV3 -implements CommonProtos.InvokeResponseOrBuilder
      +
      public static final class CommonProtos.InvokeResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.InvokeResponseOrBuilder
        InvokeResponse is the response message inclduing data and its content type
        from app callback.
      @@ -106,680 +167,992 @@ 

      Class CommonProtos.I

      Protobuf type dapr.proto.common.v1.InvokeResponse
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      hasData

      -
      public boolean hasData()
      +
    + + + +
      +
    • +

      hasData

      +
      public boolean hasData()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasData in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the data field is set.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.Any getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.Any getData()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getDataOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      +
    + + + +
      +
    • +

      getDataOrBuilder

      +
      public com.google.protobuf.AnyOrBuilder getDataOrBuilder()
      - Required. The content body of InvokeService response.
      + Required in unary RPCs. The content body of InvokeService response.
        
      .google.protobuf.Any data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrBuilder in interface CommonProtos.InvokeResponseOrBuilder
      -
    • -
    • -
      -

      getContentType

      -
      public String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      public String getContentType()
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentType in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      public com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + +
      +
    • +

      getContentTypeBytes

      +
      public com.google.protobuf.ByteString getContentTypeBytes()
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getContentTypeBytes in interface CommonProtos.InvokeResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for contentType.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeResponse parseFrom​(ByteBuffer data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeResponse parseFrom​(ByteBuffer data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.InvokeResponse parseFrom​(byte[] data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.InvokeResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.InvokeResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.InvokeResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.InvokeResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.InvokeResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.InvokeResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.InvokeResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.InvokeResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.InvokeResponseOrBuilder.html b/docs/io/dapr/v1/CommonProtos.InvokeResponseOrBuilder.html index 29b782020..971879ede 100644 --- a/docs/io/dapr/v1/CommonProtos.InvokeResponseOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.InvokeResponseOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.InvokeResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.InvokeResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.InvokeResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.InvokeResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface CommonProtos.InvokeResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetContentType()
        Required.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetContentTypeBytes()
        Required.
        - -
        com.google.protobuf.Any
        - -
        +
        com.google.protobuf.AnygetData()
        - Required.
        - -
        com.google.protobuf.AnyOrBuilder
        - -
        + Required in unary RPCs.
        +
        com.google.protobuf.AnyOrBuildergetDataOrBuilder()
        - Required.
        - -
        boolean
        - -
        + Required in unary RPCs.
        +
        booleanhasData()
        - Required.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - + Required in unary RPCs. +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          hasData

          -
          boolean hasData()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              hasData

              +
              boolean hasData()
              - Required. The content body of InvokeService response.
              + Required in unary RPCs. The content body of InvokeService response.
                
              .google.protobuf.Any data = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              Whether the data field is set.
              -
        • -
        • -
          -

          getData

          -
          com.google.protobuf.Any getData()
          +
        + + + +
          +
        • +

          getData

          +
          com.google.protobuf.Any getData()
          - Required. The content body of InvokeService response.
          + Required in unary RPCs. The content body of InvokeService response.
            
          .google.protobuf.Any data = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The data.
          -
      • -
      • -
        -

        getDataOrBuilder

        -
        com.google.protobuf.AnyOrBuilder getDataOrBuilder()
        +
      + + + +
        +
      • +

        getDataOrBuilder

        +
        com.google.protobuf.AnyOrBuilder getDataOrBuilder()
        - Required. The content body of InvokeService response.
        + Required in unary RPCs. The content body of InvokeService response.
          
        .google.protobuf.Any data = 1;
        -
    • -
    • -
      -

      getContentType

      -
      String getContentType()
      +
    + + + +
      +
    • +

      getContentType

      +
      String getContentType()
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The contentType.
      -
    • -
    • -
      -

      getContentTypeBytes

      -
      com.google.protobuf.ByteString getContentTypeBytes()
      +
    + + + +
      +
    • +

      getContentTypeBytes

      +
      com.google.protobuf.ByteString getContentTypeBytes()
        Required. The type of data content.
        
      string content_type = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for contentType.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateItem.Builder.html b/docs/io/dapr/v1/CommonProtos.StateItem.Builder.html index 073e286cc..bddfb49f0 100644 --- a/docs/io/dapr/v1/CommonProtos.StateItem.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.StateItem.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.StateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.StateItem.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder> -
    io.dapr.v1.CommonProtos.StateItem.Builder
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StateItem.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public CommonProtos.StateItem.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.StateItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.StateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public CommonProtos.StateItem build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.StateItem build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.StateItem buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.StateItem buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clone

      +
      public CommonProtos.StateItem.Builder clone()
      +
      +
      Specified by:
      clone in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clone in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clone in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      setField

      -
      public CommonProtos.StateItem.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setField

      +
      public CommonProtos.StateItem.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                               Object value)
      +
      +
      Specified by:
      setField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      clearField

      -
      public CommonProtos.StateItem.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearField

      +
      public CommonProtos.StateItem.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
      +
      +
      Specified by:
      clearField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      clearOneof

      -
      public CommonProtos.StateItem.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearOneof

      +
      public CommonProtos.StateItem.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public CommonProtos.StateItem.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public CommonProtos.StateItem.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                       int index,
      +                                                       Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public CommonProtos.StateItem.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      addRepeatedField

      +
      public CommonProtos.StateItem.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                       Object value)
      +
      +
      Specified by:
      addRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.StateItem.Builder mergeFrom(com.google.protobuf.Message other)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.StateItem.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.StateItem.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                         throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.StateItem.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        Required. The state key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public CommonProtos.StateItem.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        Required. The state key
        
      string key = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getValue

      -
      public com.google.protobuf.ByteString getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public com.google.protobuf.ByteString getValue()
        Required. The state data for key
        
      bytes value = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      setValue

      -
      public CommonProtos.StateItem.Builder setValue(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setValue

      +
      public CommonProtos.StateItem.Builder setValue​(com.google.protobuf.ByteString value)
        Required. The state data for key
        
      bytes value = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The value to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearValue

      -
      public CommonProtos.StateItem.Builder clearValue()
      +
    + + + +
      +
    • +

      clearValue

      +
      public CommonProtos.StateItem.Builder clearValue()
        Required. The state data for key
        
      bytes value = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasEtag

      -
      public boolean hasEtag()
      +
    + + + +
      +
    • +

      hasEtag

      +
      public boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasEtag in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      -
      public CommonProtos.Etag getEtag()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      clearEtag

      +
      public CommonProtos.StateItem.Builder clearEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      getEtagBuilder

      -
      public CommonProtos.Etag.Builder getEtagBuilder()
      +
    + + + +
      +
    • +

      getEtagBuilder

      +
      public CommonProtos.Etag.Builder getEtagBuilder()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      getEtagOrBuilder

      -
      public CommonProtos.EtagOrBuilder getEtagOrBuilder()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      putAllMetadata

      +
      public CommonProtos.StateItem.Builder putAllMetadata​(Map<String,​String> values)
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      hasOptions

      -
      public boolean hasOptions()
      +
    + + + +
      +
    • +

      hasOptions

      +
      public boolean hasOptions()
        Options for concurrency and consistency to save the state.
        
      .dapr.proto.common.v1.StateOptions options = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasOptions in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      -
      public CommonProtos.StateOptions getOptions()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.StateItem.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.StateItem.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.StateItem.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateItem.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateItem.html b/docs/io/dapr/v1/CommonProtos.StateItem.html index 8bf7904c1..25970d27f 100644 --- a/docs/io/dapr/v1/CommonProtos.StateItem.html +++ b/docs/io/dapr/v1/CommonProtos.StateItem.html @@ -2,40 +2,59 @@ - -CommonProtos.StateItem (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.StateItem

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.StateItem
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StateItem

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.StateItem
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.StateItemOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.StateItemOrBuilder, Serializable
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static final class CommonProtos.StateItem -extends com.google.protobuf.GeneratedMessageV3 -implements CommonProtos.StateItemOrBuilder
      +
      public static final class CommonProtos.StateItem
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.StateItemOrBuilder
        StateItem represents state key, value, and additional options to save state.
        
      Protobuf type dapr.proto.common.v1.StateItem
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      OPTIONS_FIELD_NUMBER

      -
      public static final int OPTIONS_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      OPTIONS_FIELD_NUMBER

      +
      public static final int OPTIONS_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        Required. The state key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
        Required. The state key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getValue

      -
      public com.google.protobuf.ByteString getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public com.google.protobuf.ByteString getValue()
        Required. The state data for key
        
      bytes value = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      hasEtag

      -
      public boolean hasEtag()
      +
    + + + +
      +
    • +

      hasEtag

      +
      public boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasEtag in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      -
      public CommonProtos.Etag getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public CommonProtos.Etag getEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagOrBuilder

      -
      public CommonProtos.EtagOrBuilder getEtagOrBuilder()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface CommonProtos.StateItemOrBuilder
      -
    • -
    • -
      -

      hasOptions

      -
      public boolean hasOptions()
      +
    + + + +
      +
    • +

      hasOptions

      +
      public boolean hasOptions()
        Options for concurrency and consistency to save the state.
        
      .dapr.proto.common.v1.StateOptions options = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasOptions in interface CommonProtos.StateItemOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      -
      public CommonProtos.StateOptions getOptions()
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(ByteBuffer data)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(ByteBuffer data,
      +                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(com.google.protobuf.ByteString data)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(com.google.protobuf.ByteString data,
      +                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(byte[] data)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateItem parseFrom​(byte[] data,
      +                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateItem parseFrom(InputStream input) - throws IOException
      -
      -
      Throws:
      -
      IOException
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public CommonProtos.StateItem.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static CommonProtos.StateItem.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.StateItem.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.StateItem.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.StateItem.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.StateItem getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.StateItem> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.StateItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.StateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateItemOrBuilder.html b/docs/io/dapr/v1/CommonProtos.StateItemOrBuilder.html index 05c1c6866..7deafa625 100644 --- a/docs/io/dapr/v1/CommonProtos.StateItemOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.StateItemOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.StateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.StateItemOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.StateItemOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      CommonProtos.StateItem, CommonProtos.StateItem.Builder
      -
      +
      Enclosing class:
      CommonProtos

      -
      public static interface CommonProtos.StateItemOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface CommonProtos.StateItemOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      hasEtag

      +
      boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      - +
    + + + +
      +
    • +

      getEtag

      +
      CommonProtos.Etag getEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagOrBuilder

      -
      CommonProtos.EtagOrBuilder getEtagOrBuilder()
      +
    + + + +
      +
    • +

      getEtagOrBuilder

      +
      CommonProtos.EtagOrBuilder getEtagOrBuilder()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be passed to state store component.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      hasOptions

      -
      boolean hasOptions()
      +
    + + + +
      +
    • +

      hasOptions

      +
      boolean hasOptions()
        Options for concurrency and consistency to save the state.
        
      .dapr.proto.common.v1.StateOptions options = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      - +
    + + + + + + + +
      +
    • +

      getOptionsOrBuilder

      +
      CommonProtos.StateOptionsOrBuilder getOptionsOrBuilder()
        Options for concurrency and consistency to save the state.
        
      .dapr.proto.common.v1.StateOptions options = 5;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateOptions.Builder.html b/docs/io/dapr/v1/CommonProtos.StateOptions.Builder.html index d5e954792..bec1be54a 100644 --- a/docs/io/dapr/v1/CommonProtos.StateOptions.Builder.html +++ b/docs/io/dapr/v1/CommonProtos.StateOptions.Builder.html @@ -2,40 +2,59 @@ - -CommonProtos.StateOptions.Builder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateOptions.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.StateOptions.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder> -
    io.dapr.v1.CommonProtos.StateOptions.Builder
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StateOptions.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.StateOptions getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public CommonProtos.StateOptions build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public CommonProtos.StateOptions build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public CommonProtos.StateOptions buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public CommonProtos.StateOptions buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      clearOneof

      +
      public CommonProtos.StateOptions.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public CommonProtos.StateOptions.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public CommonProtos.StateOptions.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                          int index,
      +                                                          Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public CommonProtos.StateOptions.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public CommonProtos.StateOptions.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public CommonProtos.StateOptions.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.StateOptions.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getConcurrencyValue

      -
      public int getConcurrencyValue()
      +
    + + + + + + + +
      +
    • +

      setConcurrencyValue

      +
      public CommonProtos.StateOptions.Builder setConcurrencyValue​(int value)
      .dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The enum numeric value on the wire for concurrency to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConcurrency

      - +
    + + + + + + + + + + + +
      +
    • +

      clearConcurrency

      +
      public CommonProtos.StateOptions.Builder clearConcurrency()
      .dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConsistencyValue

      -
      public int getConsistencyValue()
      +
    + + + + + + + +
      +
    • +

      setConsistencyValue

      +
      public CommonProtos.StateOptions.Builder setConsistencyValue​(int value)
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The enum numeric value on the wire for consistency to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConsistency

      - +
    + + + + + + + + + + + +
      +
    • +

      clearConsistency

      +
      public CommonProtos.StateOptions.Builder clearConsistency()
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final CommonProtos.StateOptions.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final CommonProtos.StateOptions.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final CommonProtos.StateOptions.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final CommonProtos.StateOptions.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StateOptions.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateOptions.StateConcurrency.html b/docs/io/dapr/v1/CommonProtos.StateOptions.StateConcurrency.html index b00036012..a65762500 100644 --- a/docs/io/dapr/v1/CommonProtos.StateOptions.StateConcurrency.html +++ b/docs/io/dapr/v1/CommonProtos.StateOptions.StateConcurrency.html @@ -2,40 +2,59 @@ - -CommonProtos.StateOptions.StateConcurrency (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateOptions.StateConcurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class CommonProtos.StateOptions.StateConcurrency

    +
    Package io.dapr.v1
    +

    Enum CommonProtos.StateOptions.StateConcurrency

    -
    java.lang.Object -
    java.lang.Enum<CommonProtos.StateOptions.StateConcurrency> -
    io.dapr.v1.CommonProtos.StateOptions.StateConcurrency
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + - + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      CONCURRENCY_UNSPECIFIED_VALUE

      -
      public static final int CONCURRENCY_UNSPECIFIED_VALUE
      +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          CONCURRENCY_UNSPECIFIED_VALUE

          +
          public static final int CONCURRENCY_UNSPECIFIED_VALUE
          CONCURRENCY_UNSPECIFIED = 0;
          -
          -
          See Also:
          +
          +
          See Also:
          Constant Field Values
          -
    • -
    • -
      -

      CONCURRENCY_FIRST_WRITE_VALUE

      -
      public static final int CONCURRENCY_FIRST_WRITE_VALUE
      +
    + + + +
      +
    • +

      CONCURRENCY_FIRST_WRITE_VALUE

      +
      public static final int CONCURRENCY_FIRST_WRITE_VALUE
      CONCURRENCY_FIRST_WRITE = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    CONCURRENCY_LAST_WRITE_VALUE

    -
    public static final int CONCURRENCY_LAST_WRITE_VALUE
    + + + + +
      +
    • +

      CONCURRENCY_LAST_WRITE_VALUE

      +
      public static final int CONCURRENCY_LAST_WRITE_VALUE
      CONCURRENCY_LAST_WRITE = 2;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      - -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static CommonProtos.StateOptions.StateConcurrency[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (CommonProtos.StateOptions.StateConcurrency c : CommonProtos.StateOptions.StateConcurrency.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.StateOptions.StateConcurrency valueOf(String name)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.StateOptions.StateConcurrency valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    -
    @Deprecated -public static CommonProtos.StateOptions.StateConcurrency valueOf(int value)
    -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static CommonProtos.StateOptions.StateConcurrency valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    -
    public static CommonProtos.StateOptions.StateConcurrency forNumber(int value)
    -
    -
    Parameters:
    + + + + +
      +
    • +

      forNumber

      +
      public static CommonProtos.StateOptions.StateConcurrency forNumber​(int value)
      +
      +
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      -
      Returns:
      +
      Returns:
      The enum associated with the given numeric wire value.
      -
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.StateOptions.StateConcurrency> internalGetValueMap()
    -
    + + + + +
      +
    • +

      internalGetValueMap

      +
      public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.StateOptions.StateConcurrency> internalGetValueMap()
    • -
    • -
      -

      getValueDescriptor

      -
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.StateOptions.StateConcurrency valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.StateOptions.StateConcurrency valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateOptions.StateConsistency.html b/docs/io/dapr/v1/CommonProtos.StateOptions.StateConsistency.html index bdb554d67..1ba53fa2c 100644 --- a/docs/io/dapr/v1/CommonProtos.StateOptions.StateConsistency.html +++ b/docs/io/dapr/v1/CommonProtos.StateOptions.StateConsistency.html @@ -2,40 +2,59 @@ - -CommonProtos.StateOptions.StateConsistency (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateOptions.StateConsistency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class CommonProtos.StateOptions.StateConsistency

    +
    Package io.dapr.v1
    +

    Enum CommonProtos.StateOptions.StateConsistency

    -
    java.lang.Object -
    java.lang.Enum<CommonProtos.StateOptions.StateConsistency> -
    io.dapr.v1.CommonProtos.StateOptions.StateConsistency
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + - + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      CONSISTENCY_UNSPECIFIED_VALUE

      -
      public static final int CONSISTENCY_UNSPECIFIED_VALUE
      +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          CONSISTENCY_UNSPECIFIED_VALUE

          +
          public static final int CONSISTENCY_UNSPECIFIED_VALUE
          CONSISTENCY_UNSPECIFIED = 0;
          -
          -
          See Also:
          +
          +
          See Also:
          Constant Field Values
          -
    • -
    • -
      -

      CONSISTENCY_EVENTUAL_VALUE

      -
      public static final int CONSISTENCY_EVENTUAL_VALUE
      +
    + + + +
      +
    • +

      CONSISTENCY_EVENTUAL_VALUE

      +
      public static final int CONSISTENCY_EVENTUAL_VALUE
      CONSISTENCY_EVENTUAL = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    CONSISTENCY_STRONG_VALUE

    -
    public static final int CONSISTENCY_STRONG_VALUE
    + + + + +
      +
    • +

      CONSISTENCY_STRONG_VALUE

      +
      public static final int CONSISTENCY_STRONG_VALUE
      CONSISTENCY_STRONG = 2;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      - -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static CommonProtos.StateOptions.StateConsistency[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (CommonProtos.StateOptions.StateConsistency c : CommonProtos.StateOptions.StateConsistency.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.StateOptions.StateConsistency valueOf(String name)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.StateOptions.StateConsistency valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    -
    @Deprecated -public static CommonProtos.StateOptions.StateConsistency valueOf(int value)
    -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static CommonProtos.StateOptions.StateConsistency valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    -
    public static CommonProtos.StateOptions.StateConsistency forNumber(int value)
    -
    -
    Parameters:
    + + + + +
      +
    • +

      forNumber

      +
      public static CommonProtos.StateOptions.StateConsistency forNumber​(int value)
      +
      +
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      -
      Returns:
      +
      Returns:
      The enum associated with the given numeric wire value.
      -
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.StateOptions.StateConsistency> internalGetValueMap()
    -
    + + + + +
      +
    • +

      internalGetValueMap

      +
      public static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.StateOptions.StateConsistency> internalGetValueMap()
    • -
    • -
      -

      getValueDescriptor

      -
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static CommonProtos.StateOptions.StateConsistency valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static CommonProtos.StateOptions.StateConsistency valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateOptions.html b/docs/io/dapr/v1/CommonProtos.StateOptions.html index 78bd002f4..77e2e9630 100644 --- a/docs/io/dapr/v1/CommonProtos.StateOptions.html +++ b/docs/io/dapr/v1/CommonProtos.StateOptions.html @@ -2,40 +2,59 @@ - -CommonProtos.StateOptions (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateOptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos.StateOptions

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.CommonProtos.StateOptions
    -
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StateOptions

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.StateOptions
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getConcurrencyValue

      -
      public int getConcurrencyValue()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateOptions parseFrom​(ByteBuffer data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateOptions parseFrom​(ByteBuffer data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateOptions parseFrom​(com.google.protobuf.ByteString data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateOptions parseFrom​(com.google.protobuf.ByteString data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static CommonProtos.StateOptions parseFrom​(byte[] data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static CommonProtos.StateOptions parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public CommonProtos.StateOptions.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static CommonProtos.StateOptions.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public CommonProtos.StateOptions.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected CommonProtos.StateOptions.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected CommonProtos.StateOptions.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static CommonProtos.StateOptions getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<CommonProtos.StateOptions> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public CommonProtos.StateOptions getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public CommonProtos.StateOptions getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StateOptionsOrBuilder.html b/docs/io/dapr/v1/CommonProtos.StateOptionsOrBuilder.html index d6157f337..b4350ca91 100644 --- a/docs/io/dapr/v1/CommonProtos.StateOptionsOrBuilder.html +++ b/docs/io/dapr/v1/CommonProtos.StateOptionsOrBuilder.html @@ -2,40 +2,59 @@ - -CommonProtos.StateOptionsOrBuilder (dapr-sdk-parent 1.7.1 API) - + +CommonProtos.StateOptionsOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface CommonProtos.StateOptionsOrBuilder

    +
    Package io.dapr.v1
    +

    Interface CommonProtos.StateOptionsOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface CommonProtos.StateOptionsOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        CommonProtos.StateOptions.StateConcurrencygetConcurrency()
        .dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
        - -
        int
        - -
        +
        intgetConcurrencyValue()
        .dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
        - - - -
        +
        CommonProtos.StateOptions.StateConsistencygetConsistency()
        .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
        - -
        int
        - -
        +
        intgetConsistencyValue()
        .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getConcurrencyValue

          -
          int getConcurrencyValue()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getConcurrencyValue

              +
              int getConcurrencyValue()
              .dapr.proto.common.v1.StateOptions.StateConcurrency concurrency = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The enum numeric value on the wire for concurrency.
              -
        • -
        • -
          -

          getConcurrency

          - +
        + + + +
      • -
      • -
        -

        getConsistencyValue

        -
        int getConsistencyValue()
        +
      + + + +
        +
      • +

        getConsistencyValue

        +
        int getConsistencyValue()
        .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The enum numeric value on the wire for consistency.
        -
    • -
    • -
      -

      getConsistency

      - +
    + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/CommonProtos.StreamPayload.Builder.html b/docs/io/dapr/v1/CommonProtos.StreamPayload.Builder.html new file mode 100644 index 000000000..38e58dcea --- /dev/null +++ b/docs/io/dapr/v1/CommonProtos.StreamPayload.Builder.html @@ -0,0 +1,879 @@ + + + + + +CommonProtos.StreamPayload.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StreamPayload.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public CommonProtos.StreamPayload getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public CommonProtos.StreamPayload build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public CommonProtos.StreamPayload buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          setRepeatedField

          +
          public CommonProtos.StreamPayload.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
          +                                                           int index,
          +                                                           Object value)
          +
          +
          Specified by:
          +
          setRepeatedField in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          addRepeatedField

          +
          public CommonProtos.StreamPayload.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
          +                                                           Object value)
          +
          +
          Specified by:
          +
          addRepeatedField in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public CommonProtos.StreamPayload.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                             throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<CommonProtos.StreamPayload.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getData

          +
          public com.google.protobuf.ByteString getData()
          +
          + Data sent in the chunk.
          + The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
          + Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
          + Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
          + 
          + + bytes data = 1;
          +
          +
          Specified by:
          +
          getData in interface CommonProtos.StreamPayloadOrBuilder
          +
          Returns:
          +
          The data.
          +
          +
        • +
        + + + +
          +
        • +

          setData

          +
          public CommonProtos.StreamPayload.Builder setData​(com.google.protobuf.ByteString value)
          +
          + Data sent in the chunk.
          + The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
          + Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
          + Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
          + 
          + + bytes data = 1;
          +
          +
          Parameters:
          +
          value - The data to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearData

          +
          public CommonProtos.StreamPayload.Builder clearData()
          +
          + Data sent in the chunk.
          + The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
          + Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
          + Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
          + 
          + + bytes data = 1;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getSeq

          +
          public int getSeq()
          +
          + Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
          + 
          + + uint32 seq = 2;
          +
          +
          Specified by:
          +
          getSeq in interface CommonProtos.StreamPayloadOrBuilder
          +
          Returns:
          +
          The seq.
          +
          +
        • +
        + + + +
          +
        • +

          setSeq

          +
          public CommonProtos.StreamPayload.Builder setSeq​(int value)
          +
          + Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
          + 
          + + uint32 seq = 2;
          +
          +
          Parameters:
          +
          value - The seq to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearSeq

          +
          public CommonProtos.StreamPayload.Builder clearSeq()
          +
          + Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
          + 
          + + uint32 seq = 2;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setUnknownFields

          +
          public final CommonProtos.StreamPayload.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          setUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeUnknownFields

          +
          public final CommonProtos.StreamPayload.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          mergeUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<CommonProtos.StreamPayload.Builder>
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/CommonProtos.StreamPayload.html b/docs/io/dapr/v1/CommonProtos.StreamPayload.html new file mode 100644 index 000000000..9953aef8a --- /dev/null +++ b/docs/io/dapr/v1/CommonProtos.StreamPayload.html @@ -0,0 +1,1076 @@ + + + + + +CommonProtos.StreamPayload (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class CommonProtos.StreamPayload

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.CommonProtos.StreamPayload
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, CommonProtos.StreamPayloadOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      CommonProtos
      +
      +
      +
      public static final class CommonProtos.StreamPayload
      +extends com.google.protobuf.GeneratedMessageV3
      +implements CommonProtos.StreamPayloadOrBuilder
      +
      + Chunk of data sent in a streaming request or response.
      + This is used in requests including InternalInvokeRequestStream.
      + 
      + + Protobuf type dapr.proto.common.v1.StreamPayload
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getData

          +
          public com.google.protobuf.ByteString getData()
          +
          + Data sent in the chunk.
          + The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
          + Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
          + Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
          + 
          + + bytes data = 1;
          +
          +
          Specified by:
          +
          getData in interface CommonProtos.StreamPayloadOrBuilder
          +
          Returns:
          +
          The data.
          +
          +
        • +
        + + + +
          +
        • +

          getSeq

          +
          public int getSeq()
          +
          + Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
          + 
          + + uint32 seq = 2;
          +
          +
          Specified by:
          +
          getSeq in interface CommonProtos.StreamPayloadOrBuilder
          +
          Returns:
          +
          The seq.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(ByteBuffer data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(ByteBuffer data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(com.google.protobuf.ByteString data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(com.google.protobuf.ByteString data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(byte[] data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static CommonProtos.StreamPayload parseFrom​(byte[] data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public CommonProtos.StreamPayload.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public CommonProtos.StreamPayload.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected CommonProtos.StreamPayload.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<CommonProtos.StreamPayload> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public CommonProtos.StreamPayload getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/CommonProtos.StreamPayloadOrBuilder.html b/docs/io/dapr/v1/CommonProtos.StreamPayloadOrBuilder.html new file mode 100644 index 000000000..93f49cca5 --- /dev/null +++ b/docs/io/dapr/v1/CommonProtos.StreamPayloadOrBuilder.html @@ -0,0 +1,320 @@ + + + + + +CommonProtos.StreamPayloadOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface CommonProtos.StreamPayloadOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData() +
        + Data sent in the chunk.
        +
        intgetSeq() +
        + Sequence number.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getData

          +
          com.google.protobuf.ByteString getData()
          +
          + Data sent in the chunk.
          + The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
          + Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
          + Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
          + 
          + + bytes data = 1;
          +
          +
          Returns:
          +
          The data.
          +
          +
        • +
        + + + +
          +
        • +

          getSeq

          +
          int getSeq()
          +
          + Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
          + 
          + + uint32 seq = 2;
          +
          +
          Returns:
          +
          The seq.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/CommonProtos.html b/docs/io/dapr/v1/CommonProtos.html index c0f3602c3..0b5c29226 100644 --- a/docs/io/dapr/v1/CommonProtos.html +++ b/docs/io/dapr/v1/CommonProtos.html @@ -2,40 +2,59 @@ - -CommonProtos (dapr-sdk-parent 1.7.1 API) - + +CommonProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class CommonProtos

    +
    Package io.dapr.v1
    +

    Class CommonProtos

    -
    java.lang.Object -
    io.dapr.v1.CommonProtos
    -
    -
    +
    + +
    +
      +

    • -
      public final class CommonProtos -extends Object
      -
    -
    -
      +
      public final class CommonProtos
      +extends Object
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
      + +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          registerAllExtensions

          -
          public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry)
          -
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              registerAllExtensions

              +
              public static void registerAllExtensions​(com.google.protobuf.ExtensionRegistryLite registry)
            • -
            • -
              -

              registerAllExtensions

              -
              public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry)
              -
              +
            + + + +
              +
            • +

              registerAllExtensions

              +
              public static void registerAllExtensions​(com.google.protobuf.ExtensionRegistry registry)
            • -
            • -
              -

              getDescriptor

              -
              public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor()
              -
              +
            + + + +
              +
            • +

              getDescriptor

              +
              public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor()
            -
        - +
      • +
      +
      +
      +
      -
      - -
      + +

      Copyright © 2023. All rights reserved.

      + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.Builder.html index 53a5179d6..aa1bbb72e 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
      -
      + +
    + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.BindingEventRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.BindingEventRequest.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BindingEventRequest.Builder

    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprAppCallbackProtos.BindingEventRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.BindingEventRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.BindingEventRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.BindingEventRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getName

      +
      public String getName()
        Required. The name of the input binding component.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getName in interface DaprAppCallbackProtos.BindingEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      public com.google.protobuf.ByteString getNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setNameBytes

      +
      public DaprAppCallbackProtos.BindingEventRequest.Builder setNameBytes​(com.google.protobuf.ByteString value)
        Required. The name of the input binding component.
        
      string name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for name to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.html index 0b9b24518..570b0543b 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequest.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventRequest (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.BindingEventRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BindingEventRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + +
      +
    • +

      getName

      +
      public String getName()
        Required. The name of the input binding component.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getName in interface DaprAppCallbackProtos.BindingEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      public com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      public com.google.protobuf.ByteString getNameBytes()
        Required. The name of the input binding component.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getNameBytes in interface DaprAppCallbackProtos.BindingEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom​(ByteBuffer data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom​(byte[] data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.BindingEventRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.BindingEventRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.BindingEventRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html index 8a0fccd06..9003ecb1f 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.BindingEventRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.BindingEventRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.BindingEventRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getName

          -
          String getName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getName

              +
              String getName()
                Required. The name of the input binding component.
                
              string name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The name.
              -
        • -
        • -
          -

          getNameBytes

          -
          com.google.protobuf.ByteString getNameBytes()
          +
        + + + +
          +
        • +

          getNameBytes

          +
          com.google.protobuf.ByteString getNameBytes()
            Required. The name of the input binding component.
            
          string name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for name.
          -
      • -
      • -
        -

        getData

        -
        com.google.protobuf.ByteString getData()
        +
      + + + +
        +
      • +

        getData

        +
        com.google.protobuf.ByteString getData()
          Required. The payload that the input bindings sent
          
        bytes data = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The data.
        -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata set by the input binging components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata set by the input binging components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata set by the input binging components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata set by the input binging components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata set by the input binging components.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html index 0869b24d3..3b83e0a21 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency

    -
    -
    java.lang.Object -
    java.lang.Enum<DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency> -
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency
    -
    +
    Package io.dapr.v1
    +

    Enum DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency

    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SEQUENTIAL_VALUE

      -
      public static final int SEQUENTIAL_VALUE
      +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          SEQUENTIAL_VALUE

          +
          public static final int SEQUENTIAL_VALUE
            SEQUENTIAL sends data to output bindings specified in "to" sequentially.
            
          SEQUENTIAL = 0;
          -
          -
          See Also:
          +
          +
          See Also:
          Constant Field Values
          -
    • -
    • -
      -

      PARALLEL_VALUE

      -
      public static final int PARALLEL_VALUE
      +
    + + + +
      +
    • +

      PARALLEL_VALUE

      +
      public static final int PARALLEL_VALUE
        PARALLEL sends data to output bindings specified in "to" in parallel.
        
      PARALLEL = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      - -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency c : DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      - -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    - -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    - -
    -
    Parameters:
    + + + + +
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency> internalGetValueMap()
    -
    + + + + + + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.Builder.html index 421e6e626..6f4e701a9 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.BindingEventResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.BindingEventResponse.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BindingEventResponse.Builder

    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store where states are saved.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprAppCallbackProtos.BindingEventResponse.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store where states are saved.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getStatesList

      -
      public List<CommonProtos.StateItem> getStatesList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getStatesBuilder

      +
      public CommonProtos.StateItem.Builder getStatesBuilder​(int index)
        The state key values which will be stored in store_name.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesOrBuilder

      -
      public CommonProtos.StateItemOrBuilder getStatesOrBuilder(int index)
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getStatesBuilderList

      +
      public List<CommonProtos.StateItem.Builder> getStatesBuilderList()
        The state key values which will be stored in store_name.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getToList

      -
      public com.google.protobuf.ProtocolStringList getToList()
      +
    + + + +
      +
    • +

      getToList

      +
      public com.google.protobuf.ProtocolStringList getToList()
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getToList in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the to.
      -
    • -
    • -
      -

      getToCount

      -
      public int getToCount()
      +
    + + + + + + + +
      +
    • +

      getTo

      +
      public String getTo​(int index)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTo in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The to at the given index.
      -
    • -
    • -
      -

      getToBytes

      -
      public com.google.protobuf.ByteString getToBytes(int index)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      addToBytes

      +
      public DaprAppCallbackProtos.BindingEventResponse.Builder addToBytes​(com.google.protobuf.ByteString value)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes of the to to add.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      clearData

      +
      public DaprAppCallbackProtos.BindingEventResponse.Builder clearData()
        The content which will be sent to "to" output bindings.
        
      bytes data = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConcurrencyValue

      -
      public int getConcurrencyValue()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      clearConcurrency

      +
      public DaprAppCallbackProtos.BindingEventResponse.Builder clearConcurrency()
        The concurrency of output bindings to send data to
        "to" output bindings list. The default is SEQUENTIAL.
        
      .dapr.proto.runtime.v1.BindingEventResponse.BindingEventConcurrency concurrency = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprAppCallbackProtos.BindingEventResponse.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.html index 8de001c82..11c032439 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponse.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventResponse (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.BindingEventResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BindingEventResponse

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DATA_FIELD_NUMBER

      +
      public static final int DATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      CONCURRENCY_FIELD_NUMBER

      -
      public static final int CONCURRENCY_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      CONCURRENCY_FIELD_NUMBER

      +
      public static final int CONCURRENCY_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store where states are saved.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getToList

      +
      public com.google.protobuf.ProtocolStringList getToList()
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getToList in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the to.
      -
    • -
    • -
      -

      getToCount

      -
      public int getToCount()
      +
    + + + + + + + +
      +
    • +

      getTo

      +
      public String getTo​(int index)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTo in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The to at the given index.
      -
    • -
    • -
      -

      getToBytes

      -
      public com.google.protobuf.ByteString getToBytes(int index)
      +
    + + + +
      +
    • +

      getToBytes

      +
      public com.google.protobuf.ByteString getToBytes​(int index)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getToBytes in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the to at the given index.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
        The content which will be sent to "to" output bindings.
        
      bytes data = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getConcurrencyValue

      -
      public int getConcurrencyValue()
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom​(ByteBuffer data,
      +                                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom​(byte[] data)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.BindingEventResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.BindingEventResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.BindingEventResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.BindingEventResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html index 7df542321..4e4bfae7d 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.BindingEventResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.BindingEventResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.BindingEventResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.BindingEventResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.BindingEventResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getStates

      +
      CommonProtos.StateItem getStates​(int index)
        The state key values which will be stored in store_name.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesCount

      -
      int getStatesCount()
      +
    + + + +
      +
    • +

      getStatesCount

      +
      int getStatesCount()
        The state key values which will be stored in store_name.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesOrBuilderList

      -
      List<? extends CommonProtos.StateItemOrBuilder> getStatesOrBuilderList()
      +
    + + + + + + + +
      +
    • +

      getStatesOrBuilder

      +
      CommonProtos.StateItemOrBuilder getStatesOrBuilder​(int index)
        The state key values which will be stored in store_name.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getToList

      -
      List<String> getToList()
      +
    + + + +
      +
    • +

      getToList

      +
      List<String> getToList()
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      A list containing the to.
      -
    • -
    • -
      -

      getToCount

      -
      int getToCount()
      +
    + + + +
      +
    • +

      getToCount

      +
      int getToCount()
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The count of to.
      -
    • -
    • -
      -

      getTo

      -
      String getTo(int index)
      +
    + + + +
      +
    • +

      getTo

      +
      String getTo​(int index)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The to at the given index.
      -
    • -
    • -
      -

      getToBytes

      -
      com.google.protobuf.ByteString getToBytes(int index)
      +
    + + + +
      +
    • +

      getToBytes

      +
      com.google.protobuf.ByteString getToBytes​(int index)
        The list of output bindings.
        
      repeated string to = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the to at the given index.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
        The content which will be sent to "to" output bindings.
        
      bytes data = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getConcurrencyValue

      -
      int getConcurrencyValue()
      +
    + + + +
      +
    • +

      getConcurrencyValue

      +
      int getConcurrencyValue()
        The concurrency of output bindings to send data to
        "to" output bindings list. The default is SEQUENTIAL.
        
      .dapr.proto.runtime.v1.BindingEventResponse.BindingEventConcurrency concurrency = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The enum numeric value on the wire for concurrency.
      -
    • -
    • -
      -

      getConcurrency

      - +
    + + + +
      +
    • +

      getConcurrency

      +
      DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency getConcurrency()
        The concurrency of output bindings to send data to
        "to" output bindings list. The default is SEQUENTIAL.
        
      .dapr.proto.runtime.v1.BindingEventResponse.BindingEventConcurrency concurrency = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The concurrency.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html new file mode 100644 index 000000000..a2b025fbe --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html @@ -0,0 +1,951 @@ + + + + + +DaprAppCallbackProtos.BulkSubscribeConfig.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BulkSubscribeConfig.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.html new file mode 100644 index 000000000..674b9adb3 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfig.html @@ -0,0 +1,1118 @@ + + + + + +DaprAppCallbackProtos.BulkSubscribeConfig (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.BulkSubscribeConfig

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          ENABLED_FIELD_NUMBER

          +
          public static final int ENABLED_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          MAX_MESSAGES_COUNT_FIELD_NUMBER

          +
          public static final int MAX_MESSAGES_COUNT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          MAX_AWAIT_DURATION_MS_FIELD_NUMBER

          +
          public static final int MAX_AWAIT_DURATION_MS_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + + + + + +
          +
        • +

          parseFrom

          +
          public static DaprAppCallbackProtos.BulkSubscribeConfig parseFrom​(ByteBuffer data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprAppCallbackProtos.BulkSubscribeConfig parseFrom​(com.google.protobuf.ByteString data)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprAppCallbackProtos.BulkSubscribeConfig parseFrom​(com.google.protobuf.ByteString data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprAppCallbackProtos.BulkSubscribeConfig parseFrom​(byte[] data)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprAppCallbackProtos.BulkSubscribeConfig parseFrom​(byte[] data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprAppCallbackProtos.BulkSubscribeConfig.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprAppCallbackProtos.BulkSubscribeConfig.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprAppCallbackProtos.BulkSubscribeConfig> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprAppCallbackProtos.BulkSubscribeConfig getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html new file mode 100644 index 000000000..9105392b2 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html @@ -0,0 +1,343 @@ + + + + + +DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        booleangetEnabled() +
        + Required.
        +
        intgetMaxAwaitDurationMs() +
        + Optional.
        +
        intgetMaxMessagesCount() +
        + Optional.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEnabled

          +
          boolean getEnabled()
          +
          + Required. Flag to enable/disable bulk subscribe
          + 
          + + bool enabled = 1;
          +
          +
          Returns:
          +
          The enabled.
          +
          +
        • +
        + + + +
          +
        • +

          getMaxMessagesCount

          +
          int getMaxMessagesCount()
          +
          + Optional. Max number of messages to be sent in a single bulk request
          + 
          + + int32 max_messages_count = 2;
          +
          +
          Returns:
          +
          The maxMessagesCount.
          +
          +
        • +
        + + + +
          +
        • +

          getMaxAwaitDurationMs

          +
          int getMaxAwaitDurationMs()
          +
          + Optional. Max duration to wait for messages to be sent in a single bulk request
          + 
          + + int32 max_await_duration_ms = 3;
          +
          +
          Returns:
          +
          The maxAwaitDurationMs.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.Builder.html index e5c5b68ed..94fcf6bb2 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.HealthCheckResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.HealthCheckResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.HealthCheckResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.HealthCheckResponse.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.HealthCheckResponse.Builder

    -
    -
    -
    -
    +
    + +
    +
    -
    -
    -
    -

    Methods inherited from class com.google.protobuf.GeneratedMessageV3.Builder

    -getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, newBuilderForField, onBuilt, onChanged, setUnknownFieldsProto3
    -
    -

    Methods inherited from class com.google.protobuf.AbstractMessage.Builder

    -findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
    -
    -

    Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder

    -addAll, addAll, mergeFrom, newUninitializedMessageException
    -
    -

    Methods inherited from class java.lang.Object

    -equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    -
    -

    Methods inherited from interface com.google.protobuf.MessageLite.Builder

    -mergeFrom
    -
    -

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    -findInitializationErrors, getAllFields, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    - +
    +
    +
    +
      +
    • -
    • -
      -

      Method Details

      -
        -
      • -
        -

        getDescriptor

        -
        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
        -
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            getDescriptor

            +
            public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          • -
          • -
            -

            internalGetFieldAccessorTable

            -
            protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
            -
            -
            Specified by:
            +
          + + + +
            +
          • +

            internalGetFieldAccessorTable

            +
            protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
            +
            +
            Specified by:
            internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.HealthCheckResponse.Builder>
            -
      • -
      • -
        -

        clear

        - -
        -
        Specified by:
        +
      + + + +
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.HealthCheckResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.HealthCheckResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.html index 44b30edf8..f33c049ab 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponse.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.HealthCheckResponse (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.HealthCheckResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.HealthCheckResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.HealthCheckResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom​(ByteBuffer data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom​(byte[] data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.HealthCheckResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.HealthCheckResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.HealthCheckResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.HealthCheckResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html index ca8932b02..d8fc73f63 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html @@ -2,36 +2,53 @@ - -DaprAppCallbackProtos.HealthCheckResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.HealthCheckResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.HealthCheckResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.HealthCheckResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.HealthCheckResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -

      Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

      -isInitialized
      -
      -

      Methods inherited from interface com.google.protobuf.MessageOrBuilder

      -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
      -
      +
      +
        +
      • + + +

        Method Summary

        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html index 74ac30f21..5ef306d3c 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListInputBindingsResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListInputBindingsResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.ListInputBindingsResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.ListInputBindingsResponse.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.ListInputBindingsResponse.Builder

    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getBindingsList

      +
      public com.google.protobuf.ProtocolStringList getBindingsList()
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBindingsList in interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the bindings.
      -
    • -
    • -
      -

      getBindingsCount

      -
      public int getBindingsCount()
      +
    + + + + + + + +
      +
    • +

      getBindings

      +
      public String getBindings​(int index)
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBindings in interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The bindings at the given index.
      -
    • -
    • -
      -

      getBindingsBytes

      -
      public com.google.protobuf.ByteString getBindingsBytes(int index)
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.html index 8f9e8ff3c..03b16614c 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponse.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListInputBindingsResponse (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListInputBindingsResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.ListInputBindingsResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.ListInputBindingsResponse

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getBindingsList

      -
      public com.google.protobuf.ProtocolStringList getBindingsList()
      +
    + + + +
      +
    • +

      getBindingsList

      +
      public com.google.protobuf.ProtocolStringList getBindingsList()
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBindingsList in interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the bindings.
      -
    • -
    • -
      -

      getBindingsCount

      -
      public int getBindingsCount()
      +
    + + + + + + + +
      +
    • +

      getBindings

      +
      public String getBindings​(int index)
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBindings in interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The bindings at the given index.
      -
    • -
    • -
      -

      getBindingsBytes

      -
      public com.google.protobuf.ByteString getBindingsBytes(int index)
      +
    + + + +
      +
    • +

      getBindingsBytes

      +
      public com.google.protobuf.ByteString getBindingsBytes​(int index)
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getBindingsBytes in interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the bindings at the given index.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom​(byte[] data)
      +                                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListInputBindingsResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.ListInputBindingsResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.ListInputBindingsResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.ListInputBindingsResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html index a16884d2d..247eeb8db 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - -
      getBindings​(int index)
      -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetBindings​(int index)
        The list of input bindings.
        - -
        com.google.protobuf.ByteString
        -
        getBindingsBytes​(int index)
        -
        +
        com.google.protobuf.ByteStringgetBindingsBytes​(int index)
        The list of input bindings.
        - -
        int
        - -
        +
        intgetBindingsCount()
        The list of input bindings.
        - - - -
        +
        List<String>getBindingsList()
        The list of input bindings.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getBindingsList

          -
          List<String> getBindingsList()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getBindingsList

              +
              List<String> getBindingsList()
                The list of input bindings.
                
              repeated string bindings = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              A list containing the bindings.
              -
        • -
        • -
          -

          getBindingsCount

          -
          int getBindingsCount()
          +
        + + + +
          +
        • +

          getBindingsCount

          +
          int getBindingsCount()
            The list of input bindings.
            
          repeated string bindings = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The count of bindings.
          -
      • -
      • -
        -

        getBindings

        -
        String getBindings(int index)
        +
      + + + +
        +
      • +

        getBindings

        +
        String getBindings​(int index)
          The list of input bindings.
          
        repeated string bindings = 1;
        -
        -
        Parameters:
        +
        +
        Parameters:
        index - The index of the element to return.
        -
        Returns:
        +
        Returns:
        The bindings at the given index.
        -
    • -
    • -
      -

      getBindingsBytes

      -
      com.google.protobuf.ByteString getBindingsBytes(int index)
      +
    + + + +
      +
    • +

      getBindingsBytes

      +
      com.google.protobuf.ByteString getBindingsBytes​(int index)
        The list of input bindings.
        
      repeated string bindings = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the bindings at the given index.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html index 072fa1ce2..046f5c0ef 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder

    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html index d1aa02316..d567fb190 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListTopicSubscriptionsResponse (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListTopicSubscriptionsResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.ListTopicSubscriptionsResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.ListTopicSubscriptionsResponse

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getSubscriptionsList

      -
      public List<DaprAppCallbackProtos.TopicSubscription> getSubscriptionsList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListTopicSubscriptionsResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.ListTopicSubscriptionsResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                                      throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.ListTopicSubscriptionsResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.ListTopicSubscriptionsResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.ListTopicSubscriptionsResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.ListTopicSubscriptionsResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html index 7258d5b36..cb1d16176 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html new file mode 100644 index 000000000..882525960 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html @@ -0,0 +1,2117 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.html new file mode 100644 index 000000000..687630424 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequest.html @@ -0,0 +1,1692 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html new file mode 100644 index 000000000..97ecbdb41 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html @@ -0,0 +1,1548 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html new file mode 100644 index 000000000..90ddde4b6 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html @@ -0,0 +1,461 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Enum DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html new file mode 100644 index 000000000..2d3bd4ba7 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html @@ -0,0 +1,1492 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequestEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkRequestEntry

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html new file mode 100644 index 000000000..6b75d09b9 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html @@ -0,0 +1,615 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          String getEntryId()
          +
          + Unique identifier for the message.
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getEntryIdBytes

          +
          com.google.protobuf.ByteString getEntryIdBytes()
          +
          + Unique identifier for the message.
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The bytes for entryId.
          +
          +
        • +
        + + + +
          +
        • +

          hasBytes

          +
          boolean hasBytes()
          +
          bytes bytes = 2;
          +
          +
          Returns:
          +
          Whether the bytes field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getBytes

          +
          com.google.protobuf.ByteString getBytes()
          +
          bytes bytes = 2;
          +
          +
          Returns:
          +
          The bytes.
          +
          +
        • +
        + + + +
          +
        • +

          hasCloudEvent

          +
          boolean hasCloudEvent()
          +
          .dapr.proto.runtime.v1.TopicEventCERequest cloud_event = 3;
          +
          +
          Returns:
          +
          Whether the cloudEvent field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getContentType

          +
          String getContentType()
          +
          + content type of the event contained.
          + 
          + + string content_type = 4;
          +
          +
          Returns:
          +
          The contentType.
          +
          +
        • +
        + + + +
          +
        • +

          getContentTypeBytes

          +
          com.google.protobuf.ByteString getContentTypeBytes()
          +
          + content type of the event contained.
          + 
          + + string content_type = 4;
          +
          +
          Returns:
          +
          The bytes for contentType.
          +
          +
        • +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          + The metadata associated with the event.
          + 
          + + map<string, string> metadata = 5;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          + The metadata associated with the event.
          + 
          + + map<string, string> metadata = 5;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          + The metadata associated with the event.
          + 
          + + map<string, string> metadata = 5;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          + The metadata associated with the event.
          + 
          + + map<string, string> metadata = 5;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          + The metadata associated with the event.
          + 
          + + map<string, string> metadata = 5;
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html new file mode 100644 index 000000000..c6056f05f --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html @@ -0,0 +1,768 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getId

          +
          String getId()
          +
          + Unique identifier for the bulk request.
          + 
          + + string id = 1;
          +
          +
          Returns:
          +
          The id.
          +
          +
        • +
        + + + +
          +
        • +

          getIdBytes

          +
          com.google.protobuf.ByteString getIdBytes()
          +
          + Unique identifier for the bulk request.
          + 
          + + string id = 1;
          +
          +
          Returns:
          +
          The bytes for id.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getEntriesCount

          +
          int getEntriesCount()
          +
          + The list of items inside this bulk request.
          + 
          + + repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          + The metadata associated with the this bulk request.
          + 
          + + map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          + The metadata associated with the this bulk request.
          + 
          + + map<string, string> metadata = 3;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          + The metadata associated with the this bulk request.
          + 
          + + map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          + The metadata associated with the this bulk request.
          + 
          + + map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          + The metadata associated with the this bulk request.
          + 
          + + map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getTopic

          +
          String getTopic()
          +
          + The pubsub topic which publisher sent to.
          + 
          + + string topic = 4;
          +
          +
          Returns:
          +
          The topic.
          +
          +
        • +
        + + + +
          +
        • +

          getTopicBytes

          +
          com.google.protobuf.ByteString getTopicBytes()
          +
          + The pubsub topic which publisher sent to.
          + 
          + + string topic = 4;
          +
          +
          Returns:
          +
          The bytes for topic.
          +
          +
        • +
        + + + +
          +
        • +

          getPubsubName

          +
          String getPubsubName()
          +
          + The name of the pubsub the publisher sent to.
          + 
          + + string pubsub_name = 5;
          +
          +
          Returns:
          +
          The pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getPubsubNameBytes

          +
          com.google.protobuf.ByteString getPubsubNameBytes()
          +
          + The name of the pubsub the publisher sent to.
          + 
          + + string pubsub_name = 5;
          +
          +
          Returns:
          +
          The bytes for pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getType

          +
          String getType()
          +
          + The type of event related to the originating occurrence. 
          + 
          + + string type = 6;
          +
          +
          Returns:
          +
          The type.
          +
          +
        • +
        + + + +
          +
        • +

          getTypeBytes

          +
          com.google.protobuf.ByteString getTypeBytes()
          +
          + The type of event related to the originating occurrence. 
          + 
          + + string type = 6;
          +
          +
          Returns:
          +
          The bytes for type.
          +
          +
        • +
        + + + +
          +
        • +

          getPath

          +
          String getPath()
          +
          + The matching path from TopicSubscription/routes (if specified) for this event.
          + This value is used by OnTopicEvent to "switch" inside the handler.
          + 
          + + string path = 7;
          +
          +
          Returns:
          +
          The path.
          +
          +
        • +
        + + + +
          +
        • +

          getPathBytes

          +
          com.google.protobuf.ByteString getPathBytes()
          +
          + The matching path from TopicSubscription/routes (if specified) for this event.
          + This value is used by OnTopicEvent to "switch" inside the handler.
          + 
          + + string path = 7;
          +
          +
          Returns:
          +
          The bytes for path.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html new file mode 100644 index 000000000..a104c25d0 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html @@ -0,0 +1,1129 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.html new file mode 100644 index 000000000..37e0db1e1 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponse.html @@ -0,0 +1,1128 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkResponse

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html new file mode 100644 index 000000000..fd15b3f65 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html @@ -0,0 +1,982 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html new file mode 100644 index 000000000..fad7d9884 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html @@ -0,0 +1,1130 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponseEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventBulkResponseEntry

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html new file mode 100644 index 000000000..75dbfe62f --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html @@ -0,0 +1,369 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetEntryId() +
        + Unique identifier associated the message.
        +
        com.google.protobuf.ByteStringgetEntryIdBytes() +
        + Unique identifier associated the message.
        +
        DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatusgetStatus() +
        + The status of the response.
        +
        intgetStatusValue() +
        + The status of the response.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          String getEntryId()
          +
          + Unique identifier associated the message.
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getEntryIdBytes

          +
          com.google.protobuf.ByteString getEntryIdBytes()
          +
          + Unique identifier associated the message.
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The bytes for entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getStatusValue

          +
          int getStatusValue()
          +
          + The status of the response.
          + 
          + + .dapr.proto.runtime.v1.TopicEventResponse.TopicEventResponseStatus status = 2;
          +
          +
          Returns:
          +
          The enum numeric value on the wire for status.
          +
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html new file mode 100644 index 000000000..898f9e110 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html @@ -0,0 +1,375 @@ + + + + + +DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      + +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.Builder.html new file mode 100644 index 000000000..4623c7463 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.Builder.html @@ -0,0 +1,1669 @@ + + + + + +DaprAppCallbackProtos.TopicEventCERequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventCERequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.html new file mode 100644 index 000000000..708065237 --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequest.html @@ -0,0 +1,1496 @@ + + + + + +DaprAppCallbackProtos.TopicEventCERequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventCERequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html new file mode 100644 index 000000000..11fe2aaaa --- /dev/null +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html @@ -0,0 +1,625 @@ + + + + + +DaprAppCallbackProtos.TopicEventCERequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventCERequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData() +
        + The content of the event.
        +
        StringgetDataContentType() +
        + The content type of data value.
        +
        com.google.protobuf.ByteStringgetDataContentTypeBytes() +
        + The content type of data value.
        +
        com.google.protobuf.StructgetExtensions() +
        + Custom attributes which includes cloud event extensions.
        +
        com.google.protobuf.StructOrBuildergetExtensionsOrBuilder() +
        + Custom attributes which includes cloud event extensions.
        +
        StringgetId() +
        + The unique identifier of this cloud event.
        +
        com.google.protobuf.ByteStringgetIdBytes() +
        + The unique identifier of this cloud event.
        +
        StringgetSource() +
        + source identifies the context in which an event happened.
        +
        com.google.protobuf.ByteStringgetSourceBytes() +
        + source identifies the context in which an event happened.
        +
        StringgetSpecVersion() +
        + The version of the CloudEvents specification.
        +
        com.google.protobuf.ByteStringgetSpecVersionBytes() +
        + The version of the CloudEvents specification.
        +
        StringgetType() +
        + The type of event related to the originating occurrence.
        +
        com.google.protobuf.ByteStringgetTypeBytes() +
        + The type of event related to the originating occurrence.
        +
        booleanhasExtensions() +
        + Custom attributes which includes cloud event extensions.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getId

          +
          String getId()
          +
          + The unique identifier of this cloud event.
          + 
          + + string id = 1;
          +
          +
          Returns:
          +
          The id.
          +
          +
        • +
        + + + +
          +
        • +

          getIdBytes

          +
          com.google.protobuf.ByteString getIdBytes()
          +
          + The unique identifier of this cloud event.
          + 
          + + string id = 1;
          +
          +
          Returns:
          +
          The bytes for id.
          +
          +
        • +
        + + + +
          +
        • +

          getSource

          +
          String getSource()
          +
          + source identifies the context in which an event happened.
          + 
          + + string source = 2;
          +
          +
          Returns:
          +
          The source.
          +
          +
        • +
        + + + +
          +
        • +

          getSourceBytes

          +
          com.google.protobuf.ByteString getSourceBytes()
          +
          + source identifies the context in which an event happened.
          + 
          + + string source = 2;
          +
          +
          Returns:
          +
          The bytes for source.
          +
          +
        • +
        + + + +
          +
        • +

          getType

          +
          String getType()
          +
          + The type of event related to the originating occurrence. 
          + 
          + + string type = 3;
          +
          +
          Returns:
          +
          The type.
          +
          +
        • +
        + + + +
          +
        • +

          getTypeBytes

          +
          com.google.protobuf.ByteString getTypeBytes()
          +
          + The type of event related to the originating occurrence. 
          + 
          + + string type = 3;
          +
          +
          Returns:
          +
          The bytes for type.
          +
          +
        • +
        + + + +
          +
        • +

          getSpecVersion

          +
          String getSpecVersion()
          +
          + The version of the CloudEvents specification. 
          + 
          + + string spec_version = 4;
          +
          +
          Returns:
          +
          The specVersion.
          +
          +
        • +
        + + + +
          +
        • +

          getSpecVersionBytes

          +
          com.google.protobuf.ByteString getSpecVersionBytes()
          +
          + The version of the CloudEvents specification. 
          + 
          + + string spec_version = 4;
          +
          +
          Returns:
          +
          The bytes for specVersion.
          +
          +
        • +
        + + + +
          +
        • +

          getDataContentType

          +
          String getDataContentType()
          +
          + The content type of data value.
          + 
          + + string data_content_type = 5;
          +
          +
          Returns:
          +
          The dataContentType.
          +
          +
        • +
        + + + +
          +
        • +

          getDataContentTypeBytes

          +
          com.google.protobuf.ByteString getDataContentTypeBytes()
          +
          + The content type of data value.
          + 
          + + string data_content_type = 5;
          +
          +
          Returns:
          +
          The bytes for dataContentType.
          +
          +
        • +
        + + + +
          +
        • +

          getData

          +
          com.google.protobuf.ByteString getData()
          +
          + The content of the event.
          + 
          + + bytes data = 6;
          +
          +
          Returns:
          +
          The data.
          +
          +
        • +
        + + + +
          +
        • +

          hasExtensions

          +
          boolean hasExtensions()
          +
          + Custom attributes which includes cloud event extensions.
          + 
          + + .google.protobuf.Struct extensions = 7;
          +
          +
          Returns:
          +
          Whether the extensions field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getExtensions

          +
          com.google.protobuf.Struct getExtensions()
          +
          + Custom attributes which includes cloud event extensions.
          + 
          + + .google.protobuf.Struct extensions = 7;
          +
          +
          Returns:
          +
          The extensions.
          +
          +
        • +
        + + + +
          +
        • +

          getExtensionsOrBuilder

          +
          com.google.protobuf.StructOrBuilder getExtensionsOrBuilder()
          +
          + Custom attributes which includes cloud event extensions.
          + 
          + + .google.protobuf.Struct extensions = 7;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.Builder.html index 8e7b43820..acebf6ad8 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicEventRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicEventRequest.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventRequest.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • + +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicEventRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicEventRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprAppCallbackProtos.TopicEventRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      getId

      +
      public String getId()
        id identifies the event. Producers MUST ensure that source + id 
        is unique for each distinct event. If a duplicate event is re-sent
      @@ -687,18 +1023,21 @@ 

      getId

      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getId in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The id.
      -
    • -
    • -
      -

      getIdBytes

      -
      public com.google.protobuf.ByteString getIdBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setIdBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setIdBytes​(com.google.protobuf.ByteString value)
        id identifies the event. Producers MUST ensure that source + id 
        is unique for each distinct event. If a duplicate event is re-sent
      @@ -761,18 +1109,21 @@ 

      setIdBytes

      string id = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for id to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getSource

      -
      public String getSource()
      +
    + + + +
      +
    • +

      getSource

      +
      public String getSource()
        source identifies the context in which an event happened.
        Often this will include information such as the type of the
      @@ -782,18 +1133,21 @@ 

      getSource

      string source = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSource in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The source.
      -
    • -
    • -
      -

      getSourceBytes

      -
      public com.google.protobuf.ByteString getSourceBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setSourceBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setSourceBytes​(com.google.protobuf.ByteString value)
        source identifies the context in which an event happened.
        Often this will include information such as the type of the
      @@ -864,602 +1227,893 @@ 

      setSourceBytes

      string source = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for source to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getType

      -
      public String getType()
      +
    + + + +
      +
    • +

      getType

      +
      public String getType()
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The type.
      -
    • -
    • -
      -

      getTypeBytes

      -
      public com.google.protobuf.ByteString getTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setTypeBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setTypeBytes​(com.google.protobuf.ByteString value)
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for type to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getSpecVersion

      -
      public String getSpecVersion()
      +
    + + + +
      +
    • +

      getSpecVersion

      +
      public String getSpecVersion()
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSpecVersion in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The specVersion.
      -
    • -
    • -
      -

      getSpecVersionBytes

      -
      public com.google.protobuf.ByteString getSpecVersionBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setSpecVersionBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setSpecVersionBytes​(com.google.protobuf.ByteString value)
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for specVersion to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getDataContentType

      -
      public String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      public String getDataContentType()
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataContentType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      public com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setDataContentTypeBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setDataContentTypeBytes​(com.google.protobuf.ByteString value)
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for dataContentType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setTopicBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setTopicBytes​(com.google.protobuf.ByteString value)
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for topic to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getPubsubName

      -
      public String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setPubsubNameBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setPubsubNameBytes​(com.google.protobuf.ByteString value)
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for pubsubName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getPath

      -
      public String getPath()
      +
    + + + +
      +
    • +

      getPath

      +
      public String getPath()
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPath in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The path.
      -
    • -
    • -
      -

      getPathBytes

      -
      public com.google.protobuf.ByteString getPathBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setPathBytes

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setPathBytes​(com.google.protobuf.ByteString value)
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for path to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprAppCallbackProtos.TopicEventRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hasExtensions

      +
      public boolean hasExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      hasExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      Returns:
      +
      Whether the extensions field is set.
      +
      +
    • +
    + + + +
      +
    • +

      getExtensions

      +
      public com.google.protobuf.Struct getExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      getExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      Returns:
      +
      The extensions.
      +
      +
    • +
    + + + +
      +
    • +

      setExtensions

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setExtensions​(com.google.protobuf.Struct value)
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    + + + +
      +
    • +

      setExtensions

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder setExtensions​(com.google.protobuf.Struct.Builder builderForValue)
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    + + + +
      +
    • +

      mergeExtensions

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder mergeExtensions​(com.google.protobuf.Struct value)
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    + + + +
      +
    • +

      clearExtensions

      +
      public DaprAppCallbackProtos.TopicEventRequest.Builder clearExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    + + + +
      +
    • +

      getExtensionsBuilder

      +
      public com.google.protobuf.Struct.Builder getExtensionsBuilder()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    + + + +
      +
    • +

      getExtensionsOrBuilder

      +
      public com.google.protobuf.StructOrBuilder getExtensionsOrBuilder()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      getExtensionsOrBuilder in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      +
    • +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.html index d18ebed3a..9a8dafba3 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequest.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventRequest (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicEventRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      SPEC_VERSION_FIELD_NUMBER

      +
      public static final int SPEC_VERSION_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      DATA_CONTENT_TYPE_FIELD_NUMBER

      -
      public static final int DATA_CONTENT_TYPE_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      DATA_CONTENT_TYPE_FIELD_NUMBER

      +
      public static final int DATA_CONTENT_TYPE_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      DATA_FIELD_NUMBER

      -
      public static final int DATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      DATA_FIELD_NUMBER

      +
      public static final int DATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      TOPIC_FIELD_NUMBER

      -
      public static final int TOPIC_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      TOPIC_FIELD_NUMBER

      +
      public static final int TOPIC_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      PUBSUB_NAME_FIELD_NUMBER

      -
      public static final int PUBSUB_NAME_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      PUBSUB_NAME_FIELD_NUMBER

      +
      public static final int PUBSUB_NAME_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      PATH_FIELD_NUMBER

      -
      public static final int PATH_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + + - + + + +
      +
    • +

      EXTENSIONS_FIELD_NUMBER

      +
      public static final int EXTENSIONS_FIELD_NUMBER
      +
      +
      See Also:
      +
      Constant Field Values
      +
      +
    • +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + +
      +
    • +

      getId

      +
      public String getId()
        id identifies the event. Producers MUST ensure that source + id 
        is unique for each distinct event. If a duplicate event is re-sent
      @@ -572,18 +898,21 @@ 

      getId

      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getId in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The id.
      -
    • -
    • -
      -

      getIdBytes

      -
      public com.google.protobuf.ByteString getIdBytes()
      +
    + + + +
      +
    • +

      getIdBytes

      +
      public com.google.protobuf.ByteString getIdBytes()
        id identifies the event. Producers MUST ensure that source + id 
        is unique for each distinct event. If a duplicate event is re-sent
      @@ -591,18 +920,21 @@ 

      getIdBytes

      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getIdBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for id.
      -
    • -
    • -
      -

      getSource

      -
      public String getSource()
      +
    + + + +
      +
    • +

      getSource

      +
      public String getSource()
        source identifies the context in which an event happened.
        Often this will include information such as the type of the
      @@ -612,18 +944,21 @@ 

      getSource

      string source = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSource in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The source.
      -
    • -
    • -
      -

      getSourceBytes

      -
      public com.google.protobuf.ByteString getSourceBytes()
      +
    + + + +
      +
    • +

      getSourceBytes

      +
      public com.google.protobuf.ByteString getSourceBytes()
        source identifies the context in which an event happened.
        Often this will include information such as the type of the
      @@ -633,534 +968,767 @@ 

      getSourceBytes

      string source = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSourceBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for source.
      -
    • -
    • -
      -

      getType

      -
      public String getType()
      +
    + + + +
      +
    • +

      getType

      +
      public String getType()
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The type.
      -
    • -
    • -
      -

      getTypeBytes

      -
      public com.google.protobuf.ByteString getTypeBytes()
      +
    + + + +
      +
    • +

      getTypeBytes

      +
      public com.google.protobuf.ByteString getTypeBytes()
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTypeBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for type.
      -
    • -
    • -
      -

      getSpecVersion

      -
      public String getSpecVersion()
      +
    + + + +
      +
    • +

      getSpecVersion

      +
      public String getSpecVersion()
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSpecVersion in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The specVersion.
      -
    • -
    • -
      -

      getSpecVersionBytes

      -
      public com.google.protobuf.ByteString getSpecVersionBytes()
      +
    + + + +
      +
    • +

      getSpecVersionBytes

      +
      public com.google.protobuf.ByteString getSpecVersionBytes()
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSpecVersionBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for specVersion.
      -
    • -
    • -
      -

      getDataContentType

      -
      public String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      public String getDataContentType()
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataContentType in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      public com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + +
      +
    • +

      getDataContentTypeBytes

      +
      public com.google.protobuf.ByteString getDataContentTypeBytes()
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataContentTypeBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for dataContentType.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + +
      +
    • +

      getTopicBytes

      +
      public com.google.protobuf.ByteString getTopicBytes()
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopicBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for topic.
      -
    • -
    • -
      -

      getPubsubName

      -
      public String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + +
      +
    • +

      getPubsubNameBytes

      +
      public com.google.protobuf.ByteString getPubsubNameBytes()
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubNameBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for pubsubName.
      -
    • -
    • -
      -

      getPath

      -
      public String getPath()
      +
    + + + +
      +
    • +

      getPath

      +
      public String getPath()
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPath in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The path.
      -
    • -
    • -
      -

      getPathBytes

      -
      public com.google.protobuf.ByteString getPathBytes()
      +
    + + + +
      +
    • +

      getPathBytes

      +
      public com.google.protobuf.ByteString getPathBytes()
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPathBytes in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for path.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hasExtensions

      +
      public boolean hasExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      hasExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      Returns:
      +
      Whether the extensions field is set.
      +
      +
    • +
    + + + +
      +
    • +

      getExtensions

      +
      public com.google.protobuf.Struct getExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      getExtensions in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      Returns:
      +
      The extensions.
      +
      +
    • +
    + + + +
      +
    • +

      getExtensionsOrBuilder

      +
      public com.google.protobuf.StructOrBuilder getExtensionsOrBuilder()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Specified by:
      +
      getExtensionsOrBuilder in interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +
      +
    • +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom​(ByteBuffer data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom​(byte[] data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicEventRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicEventRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicEventRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html index 4cb4fc19c..b45506933 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.TopicEventRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.TopicEventRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      com.google.protobuf.ByteString
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData()
        The content of the event.
        - - - -
        +
        StringgetDataContentType()
        The content type of data value.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetDataContentTypeBytes()
        The content type of data value.
        - - - -
        +
        com.google.protobuf.StructgetExtensions() +
        + The map of additional custom properties to be sent to the app.
        +
        com.google.protobuf.StructOrBuildergetExtensionsOrBuilder() +
        + The map of additional custom properties to be sent to the app.
        +
        StringgetId()
        id identifies the event.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetIdBytes()
        id identifies the event.
        - - - -
        +
        StringgetPath()
        The matching path from TopicSubscription/routes (if specified) for this event.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetPathBytes()
        The matching path from TopicSubscription/routes (if specified) for this event.
        - - - -
        +
        StringgetPubsubName()
        The name of the pubsub the publisher sent to.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetPubsubNameBytes()
        The name of the pubsub the publisher sent to.
        - - - -
        +
        StringgetSource()
        source identifies the context in which an event happened.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetSourceBytes()
        source identifies the context in which an event happened.
        - - - -
        +
        StringgetSpecVersion()
        The version of the CloudEvents specification.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetSpecVersionBytes()
        The version of the CloudEvents specification.
        - - - -
        +
        StringgetTopic()
        The pubsub topic which publisher sent to.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTopicBytes()
        The pubsub topic which publisher sent to.
        - - - -
        +
        StringgetType()
        The type of event related to the originating occurrence.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTypeBytes()
        The type of event related to the originating occurrence.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        booleanhasExtensions() +
        + The map of additional custom properties to be sent to the app.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getId

          -
          String getId()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getId

              +
              String getId()
                id identifies the event. Producers MUST ensure that source + id 
                is unique for each distinct event. If a duplicate event is re-sent
              @@ -239,16 +364,19 @@ 

              getId

              string id = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The id.
              -
        • -
        • -
          -

          getIdBytes

          -
          com.google.protobuf.ByteString getIdBytes()
          +
        + + + +
          +
        • +

          getIdBytes

          +
          com.google.protobuf.ByteString getIdBytes()
            id identifies the event. Producers MUST ensure that source + id 
            is unique for each distinct event. If a duplicate event is re-sent
          @@ -256,16 +384,19 @@ 

          getIdBytes

          string id = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for id.
          -
      • -
      • -
        -

        getSource

        -
        String getSource()
        +
      + + + +
        +
      • +

        getSource

        +
        String getSource()
          source identifies the context in which an event happened.
          Often this will include information such as the type of the
        @@ -275,16 +406,19 @@ 

        getSource

        string source = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The source.
        -
    • -
    • -
      -

      getSourceBytes

      -
      com.google.protobuf.ByteString getSourceBytes()
      +
    + + + +
      +
    • +

      getSourceBytes

      +
      com.google.protobuf.ByteString getSourceBytes()
        source identifies the context in which an event happened.
        Often this will include information such as the type of the
      @@ -294,221 +428,368 @@ 

      getSourceBytes

      string source = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for source.
      -
    • -
    • -
      -

      getType

      -
      String getType()
      +
    + + + +
      +
    • +

      getType

      +
      String getType()
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The type.
      -
    • -
    • -
      -

      getTypeBytes

      -
      com.google.protobuf.ByteString getTypeBytes()
      +
    + + + +
      +
    • +

      getTypeBytes

      +
      com.google.protobuf.ByteString getTypeBytes()
        The type of event related to the originating occurrence. 
        
      string type = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for type.
      -
    • -
    • -
      -

      getSpecVersion

      -
      String getSpecVersion()
      +
    + + + +
      +
    • +

      getSpecVersion

      +
      String getSpecVersion()
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The specVersion.
      -
    • -
    • -
      -

      getSpecVersionBytes

      -
      com.google.protobuf.ByteString getSpecVersionBytes()
      +
    + + + +
      +
    • +

      getSpecVersionBytes

      +
      com.google.protobuf.ByteString getSpecVersionBytes()
        The version of the CloudEvents specification. 
        
      string spec_version = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for specVersion.
      -
    • -
    • -
      -

      getDataContentType

      -
      String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      String getDataContentType()
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + +
      +
    • +

      getDataContentTypeBytes

      +
      com.google.protobuf.ByteString getDataContentTypeBytes()
        The content type of data value.
        
      string data_content_type = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for dataContentType.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
        The content of the event.
        
      bytes data = 7;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getTopic

      -
      String getTopic()
      +
    + + + +
      +
    • +

      getTopic

      +
      String getTopic()
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      com.google.protobuf.ByteString getTopicBytes()
      +
    + + + +
      +
    • +

      getTopicBytes

      +
      com.google.protobuf.ByteString getTopicBytes()
        The pubsub topic which publisher sent to.
        
      string topic = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for topic.
      -
    • -
    • -
      -

      getPubsubName

      -
      String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      String getPubsubName()
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Returns:
      +
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + +
      +
    • +

      getPubsubNameBytes

      +
      com.google.protobuf.ByteString getPubsubNameBytes()
        The name of the pubsub the publisher sent to.
        
      string pubsub_name = 8;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for pubsubName.
      -
    • -
    • -
      -

      getPath

      -
      String getPath()
      +
    + + + +
      +
    • +

      getPath

      +
      String getPath()
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Returns:
      +
      +
      Returns:
      The path.
      -
    • -
    • -
      -

      getPathBytes

      -
      com.google.protobuf.ByteString getPathBytes()
      +
    + + + +
      +
    • +

      getPathBytes

      +
      com.google.protobuf.ByteString getPathBytes()
        The matching path from TopicSubscription/routes (if specified) for this event.
        This value is used by OnTopicEvent to "switch" inside the handler.
        
      string path = 9;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for path.
      -
    - + + + +
      +
    • +

      hasExtensions

      +
      boolean hasExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Returns:
      +
      Whether the extensions field is set.
      +
      +
    • +
    + + + +
      +
    • +

      getExtensions

      +
      com.google.protobuf.Struct getExtensions()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
      +
      Returns:
      +
      The extensions.
      +
      +
    • +
    + + + +
      +
    • +

      getExtensionsOrBuilder

      +
      com.google.protobuf.StructOrBuilder getExtensionsOrBuilder()
      +
      + The map of additional custom properties to be sent to the app. These are considered to be cloud event extensions.
      + 
      + + .google.protobuf.Struct extensions = 10;
      +
    • +
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.Builder.html index d9bf2abd8..5a8a9a34f 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicEventResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicEventResponse.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventResponse.Builder

    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicEventResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html index 0f49a6814..ac166f911 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus

    +
    Package io.dapr.v1
    +

    Enum DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus

    -
    java.lang.Object -
    java.lang.Enum<DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus> -
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + - + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SUCCESS_VALUE

      -
      public static final int SUCCESS_VALUE
      +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          SUCCESS_VALUE

          +
          public static final int SUCCESS_VALUE
            SUCCESS is the default behavior: message is acknowledged and not retried or logged.
            
          SUCCESS = 0;
          -
          -
          See Also:
          +
          +
          See Also:
          Constant Field Values
          -
    • -
    • -
      -

      RETRY_VALUE

      -
      public static final int RETRY_VALUE
      +
    + + + +
      +
    • +

      RETRY_VALUE

      +
      public static final int RETRY_VALUE
        RETRY status signals Dapr to retry the message as part of an expected scenario (no warning is logged).
        
      RETRY = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    DROP_VALUE

    -
    public static final int DROP_VALUE
    + + + + +
      +
    • +

      DROP_VALUE

      +
      public static final int DROP_VALUE
        DROP status signals Dapr to drop the message as part of an unexpected scenario (warning is logged).
        
      DROP = 2;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      - -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus c : DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      - -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    - -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    - -
    -
    Parameters:
    + + + + +
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus> internalGetValueMap()
    -
    + + + + + + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.html index edaa86340..01d1fc644 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponse.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventResponse (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicEventResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicEventResponse

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStatusValue

      -
      public int getStatusValue()
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom​(ByteBuffer data,
      +                                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom​(byte[] data)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicEventResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicEventResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicEventResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicEventResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html index 4468adcd2..1044975e3 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicEventResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicEventResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.TopicEventResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicEventResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.TopicEventResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatusgetStatus()
        The list of output bindings.
        - -
        int
        - -
        +
        intgetStatusValue()
        The list of output bindings.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      + -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.Builder.html index 022e4866c..366aa4528 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRoutes.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRoutes.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicRoutes.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicRoutes.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicRoutes.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicRoutes getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicRoutes.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprAppCallbackProtos.TopicRoutes.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getDefault

      +
      public String getDefault()
        The default path for this topic.
        
      string default = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDefault in interface DaprAppCallbackProtos.TopicRoutesOrBuilder
      -
      Returns:
      +
      Returns:
      The default.
      -
    • -
    • -
      -

      getDefaultBytes

      -
      public com.google.protobuf.ByteString getDefaultBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setDefaultBytes

      +
      public DaprAppCallbackProtos.TopicRoutes.Builder setDefaultBytes​(com.google.protobuf.ByteString value)
        The default path for this topic.
        
      string default = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for default to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprAppCallbackProtos.TopicRoutes.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.html index a2545602f..2a7c2643d 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutes.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRoutes (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRoutes (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicRoutes

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicRoutes

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicRoutes
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getRulesList

      -
      public List<DaprAppCallbackProtos.TopicRule> getRulesList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getDefault

      +
      public String getDefault()
        The default path for this topic.
        
      string default = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDefault in interface DaprAppCallbackProtos.TopicRoutesOrBuilder
      -
      Returns:
      +
      Returns:
      The default.
      -
    • -
    • -
      -

      getDefaultBytes

      -
      public com.google.protobuf.ByteString getDefaultBytes()
      +
    + + + +
      +
    • +

      getDefaultBytes

      +
      public com.google.protobuf.ByteString getDefaultBytes()
        The default path for this topic.
        
      string default = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDefaultBytes in interface DaprAppCallbackProtos.TopicRoutesOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for default.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRoutes parseFrom​(ByteBuffer data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRoutes parseFrom​(ByteBuffer data,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRoutes parseFrom​(com.google.protobuf.ByteString data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRoutes parseFrom​(com.google.protobuf.ByteString data,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRoutes parseFrom​(byte[] data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRoutes parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprAppCallbackProtos.TopicRoutes.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprAppCallbackProtos.TopicRoutes.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicRoutes> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicRoutes getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicRoutes getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutesOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutesOrBuilder.html index b034db86b..1e382e4f0 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutesOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRoutesOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRoutesOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRoutesOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.TopicRoutesOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicRoutesOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.TopicRoutesOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + + + + + +
      +
    • +

      getDefault

      +
      String getDefault()
        The default path for this topic.
        
      string default = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The default.
      -
    • -
    • -
      -

      getDefaultBytes

      -
      com.google.protobuf.ByteString getDefaultBytes()
      +
    + + + +
      +
    • +

      getDefaultBytes

      +
      com.google.protobuf.ByteString getDefaultBytes()
        The default path for this topic.
        
      string default = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for default.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.Builder.html index ea59bebe3..7e4e2d694 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRule.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRule.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicRule.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicRule.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicRule.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicRule getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprAppCallbackProtos.TopicRule build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprAppCallbackProtos.TopicRule buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicRule.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprAppCallbackProtos.TopicRule.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprAppCallbackProtos.TopicRule.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprAppCallbackProtos.TopicRule.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getMatch

      -
      public String getMatch()
      +
    + + + +
      +
    • +

      getMatch

      +
      public String getMatch()
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -484,18 +690,21 @@ 

      getMatch

      string match = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMatch in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The match.
      -
    • -
    • -
      -

      getMatchBytes

      -
      public com.google.protobuf.ByteString getMatchBytes()
      +
    + + + + + + + +
      +
    • +

      setMatch

      +
      public DaprAppCallbackProtos.TopicRule.Builder setMatch​(String value)
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -522,18 +734,21 @@ 

      setMatch

      string match = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The match to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearMatch

      - +
    + + + +
      +
    • +

      clearMatch

      +
      public DaprAppCallbackProtos.TopicRule.Builder clearMatch()
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -541,16 +756,19 @@ 

      clearMatch

      string match = 1;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setMatchBytes

      -
      public DaprAppCallbackProtos.TopicRule.Builder setMatchBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setMatchBytes

      +
      public DaprAppCallbackProtos.TopicRule.Builder setMatchBytes​(com.google.protobuf.ByteString value)
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -558,18 +776,21 @@ 

      setMatchBytes

      string match = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for match to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getPath

      -
      public String getPath()
      +
    + + + +
      +
    • +

      getPath

      +
      public String getPath()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -577,18 +798,21 @@ 

      getPath

      string path = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPath in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The path.
      -
    • -
    • -
      -

      getPathBytes

      -
      public com.google.protobuf.ByteString getPathBytes()
      +
    + + + +
      +
    • +

      getPathBytes

      +
      public com.google.protobuf.ByteString getPathBytes()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -596,18 +820,21 @@ 

      getPathBytes

      string path = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPathBytes in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for path.
      -
    • -
    • -
      -

      setPath

      - +
    + + + +
      +
    • +

      setPath

      +
      public DaprAppCallbackProtos.TopicRule.Builder setPath​(String value)
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -615,18 +842,21 @@ 

      setPath

      string path = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The path to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearPath

      - +
    + + + +
      +
    • +

      clearPath

      +
      public DaprAppCallbackProtos.TopicRule.Builder clearPath()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -634,16 +864,19 @@ 

      clearPath

      string path = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setPathBytes

      -
      public DaprAppCallbackProtos.TopicRule.Builder setPathBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setPathBytes

      +
      public DaprAppCallbackProtos.TopicRule.Builder setPathBytes​(com.google.protobuf.ByteString value)
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -651,50 +884,114 @@ 

      setPathBytes

      string path = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for path to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprAppCallbackProtos.TopicRule.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.html index 508b8388b..e2572cc4b 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRule.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRule (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRule (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicRule

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.TopicRule
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicRule

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicRule
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getMatch

      -
      public String getMatch()
      +
    + + + +
      +
    • +

      getMatch

      +
      public String getMatch()
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -396,18 +619,21 @@ 

      getMatch

      string match = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMatch in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The match.
      -
    • -
    • -
      -

      getMatchBytes

      -
      public com.google.protobuf.ByteString getMatchBytes()
      +
    + + + +
      +
    • +

      getMatchBytes

      +
      public com.google.protobuf.ByteString getMatchBytes()
        The optional CEL expression used to match the event.
        If the match is not specified, then the route is considered
      @@ -415,18 +641,21 @@ 

      getMatchBytes

      string match = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMatchBytes in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for match.
      -
    • -
    • -
      -

      getPath

      -
      public String getPath()
      +
    + + + +
      +
    • +

      getPath

      +
      public String getPath()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -434,18 +663,21 @@ 

      getPath

      string path = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPath in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The path.
      -
    • -
    • -
      -

      getPathBytes

      -
      public com.google.protobuf.ByteString getPathBytes()
      +
    + + + +
      +
    • +

      getPathBytes

      +
      public com.google.protobuf.ByteString getPathBytes()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -453,311 +685,447 @@ 

      getPathBytes

      string path = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPathBytes in interface DaprAppCallbackProtos.TopicRuleOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for path.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRule parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRule parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRule parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRule parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicRule parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicRule parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprAppCallbackProtos.TopicRule.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprAppCallbackProtos.TopicRule.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicRule> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicRule getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicRule getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRuleOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRuleOrBuilder.html index dfd291e71..fb766b744 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRuleOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicRuleOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicRuleOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicRuleOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.TopicRuleOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicRuleOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.TopicRuleOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetMatch()
        The optional CEL expression used to match the event.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetMatchBytes()
        The optional CEL expression used to match the event.
        - - - -
        +
        StringgetPath()
        The path used to identify matches for this subscription.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetPathBytes()
        The path used to identify matches for this subscription.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getMatch

          -
          String getMatch()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getMatch

              +
              String getMatch()
                The optional CEL expression used to match the event.
                If the match is not specified, then the route is considered
              @@ -161,16 +236,19 @@ 

              getMatch

              string match = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The match.
              -
        • -
        • -
          -

          getMatchBytes

          -
          com.google.protobuf.ByteString getMatchBytes()
          +
        + + + +
          +
        • +

          getMatchBytes

          +
          com.google.protobuf.ByteString getMatchBytes()
            The optional CEL expression used to match the event.
            If the match is not specified, then the route is considered
          @@ -178,16 +256,19 @@ 

          getMatchBytes

          string match = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for match.
          -
      • -
      • -
        -

        getPath

        -
        String getPath()
        +
      + + + +
        +
      • +

        getPath

        +
        String getPath()
          The path used to identify matches for this subscription.
          This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
        @@ -195,16 +276,19 @@ 

        getPath

        string path = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The path.
        -
    • -
    • -
      -

      getPathBytes

      -
      com.google.protobuf.ByteString getPathBytes()
      +
    + + + +
      +
    • +

      getPathBytes

      +
      com.google.protobuf.ByteString getPathBytes()
        The path used to identify matches for this subscription.
        This value is passed in TopicEventRequest and used by OnTopicEvent to "switch"
      @@ -212,24 +296,82 @@ 

      getPathBytes

      string path = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for path.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.Builder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.Builder.html index 2ee920225..1ea8fc932 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.Builder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.Builder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicSubscription.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicSubscription.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicSubscription.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicSubscription.Builder> -
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicSubscription.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • + +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprAppCallbackProtos.TopicSubscription.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicSubscription.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicSubscription.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicSubscription getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicSubscription getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprAppCallbackProtos.TopicSubscription.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprAppCallbackProtos.TopicSubscription.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        Required. The name of the pubsub containing the topic below to subscribe to.
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setPubsubNameBytes

      +
      public DaprAppCallbackProtos.TopicSubscription.Builder setPubsubNameBytes​(com.google.protobuf.ByteString value)
        Required. The name of the pubsub containing the topic below to subscribe to.
        
      string pubsub_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for pubsubName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getTopic

      -
      public String getTopic()
      +
    + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        Required. The name of topic which will be subscribed
        
      string topic = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      hasRoutes

      +
      public boolean hasRoutes()
        The optional routing rules to match against. In the gRPC interface, OnTopicEvent
        is still invoked but the matching path is sent in the TopicEventRequest.
        
      .dapr.proto.runtime.v1.TopicRoutes routes = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasRoutes in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the routes field is set.
      -
    • -
    • -
      -

      getRoutes

      - +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getDeadLetterTopic

      +
      public String getDeadLetterTopic()
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDeadLetterTopic in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The deadLetterTopic.
      -
    • -
    • -
      -

      getDeadLetterTopicBytes

      -
      public com.google.protobuf.ByteString getDeadLetterTopicBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setDeadLetterTopicBytes

      +
      public DaprAppCallbackProtos.TopicSubscription.Builder setDeadLetterTopicBytes​(com.google.protobuf.ByteString value)
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for deadLetterTopic to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprAppCallbackProtos.TopicSubscription.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hasBulkSubscribe

      +
      public boolean hasBulkSubscribe()
      +
      + The optional bulk subscribe settings for this topic.
      + 
      + + .dapr.proto.runtime.v1.BulkSubscribeConfig bulk_subscribe = 7;
      +
      +
      Specified by:
      +
      hasBulkSubscribe in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      +
      Returns:
      +
      Whether the bulkSubscribe field is set.
      +
      +
    • +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.html index 8cb8b71f2..a6d8f50d6 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscription.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicSubscription (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicSubscription (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos.TopicSubscription

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos.TopicSubscription

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprAppCallbackProtos.TopicSubscription
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      ROUTES_FIELD_NUMBER

      +
      public static final int ROUTES_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      DEAD_LETTER_TOPIC_FIELD_NUMBER

      -
      public static final int DEAD_LETTER_TOPIC_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      DEAD_LETTER_TOPIC_FIELD_NUMBER

      +
      public static final int DEAD_LETTER_TOPIC_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + + +
      +
    • +

      BULK_SUBSCRIBE_FIELD_NUMBER

      +
      public static final int BULK_SUBSCRIBE_FIELD_NUMBER
      +
      +
      See Also:
      +
      Constant Field Values
      +
    • +
    + + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getPubsubName

      -
      public String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        Required. The name of the pubsub containing the topic below to subscribe to.
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + +
      +
    • +

      getPubsubNameBytes

      +
      public com.google.protobuf.ByteString getPubsubNameBytes()
        Required. The name of the pubsub containing the topic below to subscribe to.
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubNameBytes in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for pubsubName.
      -
    • -
    • -
      -

      getTopic

      -
      public String getTopic()
      +
    + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        Required. The name of topic which will be subscribed
        
      string topic = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      hasRoutes

      +
      public boolean hasRoutes()
        The optional routing rules to match against. In the gRPC interface, OnTopicEvent
        is still invoked but the matching path is sent in the TopicEventRequest.
        
      .dapr.proto.runtime.v1.TopicRoutes routes = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasRoutes in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the routes field is set.
      -
    • -
    • -
      -

      getRoutes

      - +
    + + + + + + + + + + + +
      +
    • +

      getDeadLetterTopic

      +
      public String getDeadLetterTopic()
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDeadLetterTopic in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The deadLetterTopic.
      -
    • -
    • -
      -

      getDeadLetterTopicBytes

      -
      public com.google.protobuf.ByteString getDeadLetterTopicBytes()
      +
    + + + +
      +
    • +

      getDeadLetterTopicBytes

      +
      public com.google.protobuf.ByteString getDeadLetterTopicBytes()
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDeadLetterTopicBytes in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for deadLetterTopic.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hasBulkSubscribe

      +
      public boolean hasBulkSubscribe()
      +
      + The optional bulk subscribe settings for this topic.
      + 
      + + .dapr.proto.runtime.v1.BulkSubscribeConfig bulk_subscribe = 7;
      +
      +
      Specified by:
      +
      hasBulkSubscribe in interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      +
      Returns:
      +
      Whether the bulkSubscribe field is set.
      +
      +
    • +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicSubscription parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicSubscription parseFrom​(ByteBuffer data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicSubscription parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicSubscription parseFrom​(com.google.protobuf.ByteString data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicSubscription parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicSubscription parseFrom​(com.google.protobuf.ByteString data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicSubscription parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprAppCallbackProtos.TopicSubscription parseFrom​(byte[] data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprAppCallbackProtos.TopicSubscription parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprAppCallbackProtos.TopicSubscription> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprAppCallbackProtos.TopicSubscription getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprAppCallbackProtos.TopicSubscription getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html index 6d33dfe9c..dfe67169a 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos.TopicSubscriptionOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos.TopicSubscriptionOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprAppCallbackProtos.TopicSubscriptionOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getTopicBytes

      +
      com.google.protobuf.ByteString getTopicBytes()
        Required. The name of topic which will be subscribed
        
      string topic = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for topic.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The optional properties used for this topic's subscription e.g. session id
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The optional properties used for this topic's subscription e.g. session id
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The optional properties used for this topic's subscription e.g. session id
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The optional properties used for this topic's subscription e.g. session id
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The optional properties used for this topic's subscription e.g. session id
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      hasRoutes

      -
      boolean hasRoutes()
      +
    + + + +
      +
    • +

      hasRoutes

      +
      boolean hasRoutes()
        The optional routing rules to match against. In the gRPC interface, OnTopicEvent
        is still invoked but the matching path is sent in the TopicEventRequest.
        
      .dapr.proto.runtime.v1.TopicRoutes routes = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the routes field is set.
      -
    • -
    • -
      -

      getRoutes

      - +
    + + + +
      +
    • +

      getRoutes

      +
      DaprAppCallbackProtos.TopicRoutes getRoutes()
        The optional routing rules to match against. In the gRPC interface, OnTopicEvent
        is still invoked but the matching path is sent in the TopicEventRequest.
        
      .dapr.proto.runtime.v1.TopicRoutes routes = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The routes.
      -
    • -
    • -
      -

      getRoutesOrBuilder

      - +
    + + + +
      +
    • +

      getRoutesOrBuilder

      +
      DaprAppCallbackProtos.TopicRoutesOrBuilder getRoutesOrBuilder()
        The optional routing rules to match against. In the gRPC interface, OnTopicEvent
        is still invoked but the matching path is sent in the TopicEventRequest.
        
      .dapr.proto.runtime.v1.TopicRoutes routes = 5;
      -
    • -
    • -
      -

      getDeadLetterTopic

      -
      String getDeadLetterTopic()
      +
    + + + +
      +
    • +

      getDeadLetterTopic

      +
      String getDeadLetterTopic()
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The deadLetterTopic.
      -
    • -
    • -
      -

      getDeadLetterTopicBytes

      -
      com.google.protobuf.ByteString getDeadLetterTopicBytes()
      +
    + + + +
      +
    • +

      getDeadLetterTopicBytes

      +
      com.google.protobuf.ByteString getDeadLetterTopicBytes()
        The optional dead letter queue for this topic to send events to.
        
      string dead_letter_topic = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for deadLetterTopic.
      -
    - + + + +
      +
    • +

      hasBulkSubscribe

      +
      boolean hasBulkSubscribe()
      +
      + The optional bulk subscribe settings for this topic.
      + 
      + + .dapr.proto.runtime.v1.BulkSubscribeConfig bulk_subscribe = 7;
      +
      +
      Returns:
      +
      Whether the bulkSubscribe field is set.
      +
      +
    • +
    + + + +
      +
    • +

      getBulkSubscribe

      +
      DaprAppCallbackProtos.BulkSubscribeConfig getBulkSubscribe()
      +
      + The optional bulk subscribe settings for this topic.
      + 
      + + .dapr.proto.runtime.v1.BulkSubscribeConfig bulk_subscribe = 7;
      +
      +
      Returns:
      +
      The bulkSubscribe.
      +
      +
    • +
    + + + + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprAppCallbackProtos.html b/docs/io/dapr/v1/DaprAppCallbackProtos.html index 0521575b4..f6ad59aaa 100644 --- a/docs/io/dapr/v1/DaprAppCallbackProtos.html +++ b/docs/io/dapr/v1/DaprAppCallbackProtos.html @@ -2,40 +2,59 @@ - -DaprAppCallbackProtos (dapr-sdk-parent 1.7.1 API) - + +DaprAppCallbackProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprAppCallbackProtos

    -
    -
    java.lang.Object -
    io.dapr.v1.DaprAppCallbackProtos
    +
    Package io.dapr.v1
    +

    Class DaprAppCallbackProtos

    -
    +
    + +
    +
      +

    • -
      public final class DaprAppCallbackProtos -extends Object
      -
    -
    -
      +
      public final class DaprAppCallbackProtos
      +extends Object
      + +
    +
    +
    +
    + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprGrpc.DaprBlockingStub

    -
    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractBlockingStub<DaprGrpc.DaprBlockingStub> -
    io.dapr.v1.DaprGrpc.DaprBlockingStub
    +
    Package io.dapr.v1
    +

    Class DaprGrpc.DaprBlockingStub

    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      DaprGrpc

      -
      public static final class DaprGrpc.DaprBlockingStub -extends io.grpc.stub.AbstractBlockingStub<DaprGrpc.DaprBlockingStub>
      +
      public static final class DaprGrpc.DaprBlockingStub
      +extends io.grpc.stub.AbstractBlockingStub<DaprGrpc.DaprBlockingStub>
        Dapr service provides APIs to user application to access Dapr building blocks.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setMetadata

      +
      public com.google.protobuf.Empty setMetadata​(DaprProtos.SetMetadataRequest request)
        Sets value in extended metadata of the sidecar
        
      -
    • -
    • -
      -

      shutdown

      -
      public com.google.protobuf.Empty shutdown(com.google.protobuf.Empty request)
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      shutdown

      +
      public com.google.protobuf.Empty shutdown​(com.google.protobuf.Empty request)
        Shutdown the sidecar
        
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprGrpc.DaprFutureStub.html b/docs/io/dapr/v1/DaprGrpc.DaprFutureStub.html index 01db42822..a486648a7 100644 --- a/docs/io/dapr/v1/DaprGrpc.DaprFutureStub.html +++ b/docs/io/dapr/v1/DaprGrpc.DaprFutureStub.html @@ -2,40 +2,59 @@ - -DaprGrpc.DaprFutureStub (dapr-sdk-parent 1.7.1 API) - + +DaprGrpc.DaprFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprGrpc.DaprFutureStub

    +
    Package io.dapr.v1
    +

    Class DaprGrpc.DaprFutureStub

    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractFutureStub<DaprGrpc.DaprFutureStub> -
    io.dapr.v1.DaprGrpc.DaprFutureStub
    -
    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      DaprGrpc

      -
      public static final class DaprGrpc.DaprFutureStub -extends io.grpc.stub.AbstractFutureStub<DaprGrpc.DaprFutureStub>
      +
      public static final class DaprGrpc.DaprFutureStub
      +extends io.grpc.stub.AbstractFutureStub<DaprGrpc.DaprFutureStub>
        Dapr service provides APIs to user application to access Dapr building blocks.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + +
      +
    • +

      deleteState

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteState​(DaprProtos.DeleteStateRequest request)
        Deletes the state for a specific key.
        
      -
    • -
    • -
      -

      deleteBulkState

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteBulkState(DaprProtos.DeleteBulkStateRequest request)
      +
    + + + +
      +
    • +

      deleteBulkState

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteBulkState​(DaprProtos.DeleteBulkStateRequest request)
        Deletes a bulk of state items for a list of keys
        
      -
    • -
    • -
      -

      executeStateTransaction

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest request)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> executeStateTransaction​(DaprProtos.ExecuteStateTransactionRequest request)
        Executes transactions for a specified store
        
      -
    • -
    • -
      -

      publishEvent

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> publishEvent(DaprProtos.PublishEventRequest request)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      registerActorTimer

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> registerActorTimer​(DaprProtos.RegisterActorTimerRequest request)
        Register an actor timer.
        
      -
    • -
    • -
      -

      unregisterActorTimer

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest request)
      +
    + + + +
      +
    • +

      unregisterActorTimer

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> unregisterActorTimer​(DaprProtos.UnregisterActorTimerRequest request)
        Unregister an actor timer.
        
      -
    • -
    • -
      -

      registerActorReminder

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> registerActorReminder(DaprProtos.RegisterActorReminderRequest request)
      +
    + + + +
      +
    • +

      registerActorReminder

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> registerActorReminder​(DaprProtos.RegisterActorReminderRequest request)
        Register an actor reminder.
        
      -
    • -
    • -
      -

      unregisterActorReminder

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest request)
      +
    + + + +
      +
    • +

      unregisterActorReminder

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> unregisterActorReminder​(DaprProtos.UnregisterActorReminderRequest request)
        Unregister an actor reminder.
        
      -
    • -
    • -
      -

      renameActorReminder

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> renameActorReminder(DaprProtos.RenameActorReminderRequest request)
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadata

      +
      public com.google.common.util.concurrent.ListenableFuture<DaprProtos.GetMetadataResponse> getMetadata​(com.google.protobuf.Empty request)
        Gets metadata of the sidecar
        
      -
    • -
    • -
      -

      setMetadata

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> setMetadata(DaprProtos.SetMetadataRequest request)
      +
    + + + +
      +
    • +

      setMetadata

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> setMetadata​(DaprProtos.SetMetadataRequest request)
        Sets value in extended metadata of the sidecar
        
      -
    • -
    • -
      -

      shutdown

      -
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> shutdown(com.google.protobuf.Empty request)
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      shutdown

      +
      public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> shutdown​(com.google.protobuf.Empty request)
        Shutdown the sidecar
        
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprGrpc.DaprImplBase.html b/docs/io/dapr/v1/DaprGrpc.DaprImplBase.html index b5e13076c..013e767f6 100644 --- a/docs/io/dapr/v1/DaprGrpc.DaprImplBase.html +++ b/docs/io/dapr/v1/DaprGrpc.DaprImplBase.html @@ -2,40 +2,59 @@ - -DaprGrpc.DaprImplBase (dapr-sdk-parent 1.7.1 API) - + +DaprGrpc.DaprImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprGrpc.DaprImplBase

    +
    Package io.dapr.v1
    +

    Class DaprGrpc.DaprImplBase

    -
    java.lang.Object -
    io.dapr.v1.DaprGrpc.DaprImplBase
    -
    -
    -
    +
    + +
    +
      +
    • +
      All Implemented Interfaces:
      io.grpc.BindableService
      -
      +
      Enclosing class:
      DaprGrpc

      -
      public abstract static class DaprGrpc.DaprImplBase -extends Object -implements io.grpc.BindableService
      +
      public abstract static class DaprGrpc.DaprImplBase
      +extends Object
      +implements io.grpc.BindableService
        Dapr service provides APIs to user application to access Dapr building blocks.
        
      -
    -
    -
      - -
    • -
      -

      Constructor Summary

      -
      Constructors
      -
      -
      Constructor
      -
      Description
      - -
       
      +
    • +
    - +
    + + + + + + + + + + + + +
      +
    • +

      deleteState

      +
      public void deleteState​(DaprProtos.DeleteStateRequest request,
      +                        io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Deletes the state for a specific key.
        
      -
    • -
    • -
      -

      deleteBulkState

      -
      public void deleteBulkState(DaprProtos.DeleteBulkStateRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      deleteBulkState

      +
      public void deleteBulkState​(DaprProtos.DeleteBulkStateRequest request,
      +                            io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Deletes a bulk of state items for a list of keys
        
      -
    • -
    • -
      -

      executeStateTransaction

      -
      public void executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      public void executeStateTransaction​(DaprProtos.ExecuteStateTransactionRequest request,
      +                                    io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Executes transactions for a specified store
        
      -
    • -
    • -
      -

      publishEvent

      -
      public void publishEvent(DaprProtos.PublishEventRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      registerActorTimer

      +
      public void registerActorTimer​(DaprProtos.RegisterActorTimerRequest request,
      +                               io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Register an actor timer.
        
      -
    • -
    • -
      -

      unregisterActorTimer

      -
      public void unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      unregisterActorTimer

      +
      public void unregisterActorTimer​(DaprProtos.UnregisterActorTimerRequest request,
      +                                 io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Unregister an actor timer.
        
      -
    • -
    • -
      -

      registerActorReminder

      -
      public void registerActorReminder(DaprProtos.RegisterActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      registerActorReminder

      +
      public void registerActorReminder​(DaprProtos.RegisterActorReminderRequest request,
      +                                  io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Register an actor reminder.
        
      -
    • -
    • -
      -

      unregisterActorReminder

      -
      public void unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      unregisterActorReminder

      +
      public void unregisterActorReminder​(DaprProtos.UnregisterActorReminderRequest request,
      +                                    io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Unregister an actor reminder.
        
      -
    • -
    • -
      -

      renameActorReminder

      -
      public void renameActorReminder(DaprProtos.RenameActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadata

      +
      public void getMetadata​(com.google.protobuf.Empty request,
      +                        io.grpc.stub.StreamObserver<DaprProtos.GetMetadataResponse> responseObserver)
        Gets metadata of the sidecar
        
      -
    • -
    • -
      -

      setMetadata

      -
      public void setMetadata(DaprProtos.SetMetadataRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      setMetadata

      +
      public void setMetadata​(DaprProtos.SetMetadataRequest request,
      +                        io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Sets value in extended metadata of the sidecar
        
      -
    • -
    • -
      -

      shutdown

      -
      public void shutdown(com.google.protobuf.Empty request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      shutdown

      +
      public void shutdown​(com.google.protobuf.Empty request,
      +                     io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Shutdown the sidecar
        
      -
    • -
    • -
      -

      bindService

      -
      public final io.grpc.ServerServiceDefinition bindService()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      bindService

      +
      public final io.grpc.ServerServiceDefinition bindService()
      +
      +
      Specified by:
      bindService in interface io.grpc.BindableService
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprGrpc.DaprStub.html b/docs/io/dapr/v1/DaprGrpc.DaprStub.html index c53000065..cd779b899 100644 --- a/docs/io/dapr/v1/DaprGrpc.DaprStub.html +++ b/docs/io/dapr/v1/DaprGrpc.DaprStub.html @@ -2,40 +2,59 @@ - -DaprGrpc.DaprStub (dapr-sdk-parent 1.7.1 API) - + +DaprGrpc.DaprStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprGrpc.DaprStub

    -
    -
    java.lang.Object -
    io.grpc.stub.AbstractStub<S> -
    io.grpc.stub.AbstractAsyncStub<DaprGrpc.DaprStub> -
    io.dapr.v1.DaprGrpc.DaprStub
    +
    Package io.dapr.v1
    +

    Class DaprGrpc.DaprStub

    -
    -
    -
    -
    +
    + +
    +
      +
    • +
      Enclosing class:
      DaprGrpc

      -
      public static final class DaprGrpc.DaprStub -extends io.grpc.stub.AbstractAsyncStub<DaprGrpc.DaprStub>
      +
      public static final class DaprGrpc.DaprStub
      +extends io.grpc.stub.AbstractAsyncStub<DaprGrpc.DaprStub>
        Dapr service provides APIs to user application to access Dapr building blocks.
        
      -
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + +
      +
    • +

      deleteState

      +
      public void deleteState​(DaprProtos.DeleteStateRequest request,
      +                        io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Deletes the state for a specific key.
        
      -
    • -
    • -
      -

      deleteBulkState

      -
      public void deleteBulkState(DaprProtos.DeleteBulkStateRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      deleteBulkState

      +
      public void deleteBulkState​(DaprProtos.DeleteBulkStateRequest request,
      +                            io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Deletes a bulk of state items for a list of keys
        
      -
    • -
    • -
      -

      executeStateTransaction

      -
      public void executeStateTransaction(DaprProtos.ExecuteStateTransactionRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      executeStateTransaction

      +
      public void executeStateTransaction​(DaprProtos.ExecuteStateTransactionRequest request,
      +                                    io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Executes transactions for a specified store
        
      -
    • -
    • -
      -

      publishEvent

      -
      public void publishEvent(DaprProtos.PublishEventRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      registerActorTimer

      +
      public void registerActorTimer​(DaprProtos.RegisterActorTimerRequest request,
      +                               io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Register an actor timer.
        
      -
    • -
    • -
      -

      unregisterActorTimer

      -
      public void unregisterActorTimer(DaprProtos.UnregisterActorTimerRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      unregisterActorTimer

      +
      public void unregisterActorTimer​(DaprProtos.UnregisterActorTimerRequest request,
      +                                 io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Unregister an actor timer.
        
      -
    • -
    • -
      -

      registerActorReminder

      -
      public void registerActorReminder(DaprProtos.RegisterActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      registerActorReminder

      +
      public void registerActorReminder​(DaprProtos.RegisterActorReminderRequest request,
      +                                  io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Register an actor reminder.
        
      -
    • -
    • -
      -

      unregisterActorReminder

      -
      public void unregisterActorReminder(DaprProtos.UnregisterActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      unregisterActorReminder

      +
      public void unregisterActorReminder​(DaprProtos.UnregisterActorReminderRequest request,
      +                                    io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Unregister an actor reminder.
        
      -
    • -
    • -
      -

      renameActorReminder

      -
      public void renameActorReminder(DaprProtos.RenameActorReminderRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadata

      +
      public void getMetadata​(com.google.protobuf.Empty request,
      +                        io.grpc.stub.StreamObserver<DaprProtos.GetMetadataResponse> responseObserver)
        Gets metadata of the sidecar
        
      -
    • -
    • -
      -

      setMetadata

      -
      public void setMetadata(DaprProtos.SetMetadataRequest request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + +
      +
    • +

      setMetadata

      +
      public void setMetadata​(DaprProtos.SetMetadataRequest request,
      +                        io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Sets value in extended metadata of the sidecar
        
      -
    • -
    • -
      -

      shutdown

      -
      public void shutdown(com.google.protobuf.Empty request, - io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      shutdown

      +
      public void shutdown​(com.google.protobuf.Empty request,
      +                     io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
        Shutdown the sidecar
        
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprGrpc.html b/docs/io/dapr/v1/DaprGrpc.html index 65d0b7dfd..98d6ae9d7 100644 --- a/docs/io/dapr/v1/DaprGrpc.html +++ b/docs/io/dapr/v1/DaprGrpc.html @@ -2,40 +2,59 @@ - -DaprGrpc (dapr-sdk-parent 1.7.1 API) - + +DaprGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprGrpc

    -
    -
    java.lang.Object -
    io.dapr.v1.DaprGrpc
    +
    Package io.dapr.v1
    +

    Class DaprGrpc

    -
    +
    + +
    +
      +

    • -
      @Generated(value="by gRPC proto compiler (version 1.42.1)", +
      @Generated(value="by gRPC proto compiler (version 1.42.1)",
                  comments="Source: dapr.proto")
      -public final class DaprGrpc
      -extends Object
      +public final class DaprGrpc +extends Object
        Dapr service provides APIs to user application to access Dapr building blocks.
        
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      newFutureStub

      +
      public static DaprGrpc.DaprFutureStub newFutureStub​(io.grpc.Channel channel)
      Creates a new ListenableFuture-style stub that supports unary calls on the service
      -
    • -
    • -
      -

      getServiceDescriptor

      -
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
      -
      +
    + + + +
      +
    • +

      getServiceDescriptor

      +
      public static io.grpc.ServiceDescriptor getServiceDescriptor()
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.Builder.html b/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.Builder.html index eab5adead..3802e4046 100644 --- a/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.ActiveActorsCount.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ActiveActorsCount.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ActiveActorsCount.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.ActiveActorsCount.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ActiveActorsCount.Builder> -
    io.dapr.v1.DaprProtos.ActiveActorsCount.Builder
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.ActiveActorsCount getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.ActiveActorsCount build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.ActiveActorsCount buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.ActiveActorsCount buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ActiveActorsCount.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.ActiveActorsCount.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.ActiveActorsCount.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.ActiveActorsCount.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getType

      -
      public String getType()
      +
    + + + +
      +
    • +

      getType

      +
      public String getType()
      string type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getType in interface DaprProtos.ActiveActorsCountOrBuilder
      -
      Returns:
      +
      Returns:
      The type.
      -
    • -
    • -
      -

      getTypeBytes

      -
      public com.google.protobuf.ByteString getTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setTypeBytes

      +
      public DaprProtos.ActiveActorsCount.Builder setTypeBytes​(com.google.protobuf.ByteString value)
      string type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for type to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getCount

      -
      public int getCount()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.ActiveActorsCount.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ActiveActorsCount.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.html b/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.html index d038c9370..6babf54a4 100644 --- a/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.html +++ b/docs/io/dapr/v1/DaprProtos.ActiveActorsCount.html @@ -2,40 +2,59 @@ - -DaprProtos.ActiveActorsCount (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ActiveActorsCount (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ActiveActorsCount

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.ActiveActorsCount
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ActiveActorsCount

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.ActiveActorsCount
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getType

      -
      public String getType()
      +
    + + + +
      +
    • +

      getType

      +
      public String getType()
      string type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getType in interface DaprProtos.ActiveActorsCountOrBuilder
      -
      Returns:
      +
      Returns:
      The type.
      -
    • -
    • -
      -

      getTypeBytes

      -
      public com.google.protobuf.ByteString getTypeBytes()
      +
    + + + +
      +
    • +

      getTypeBytes

      +
      public com.google.protobuf.ByteString getTypeBytes()
      string type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTypeBytes in interface DaprProtos.ActiveActorsCountOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for type.
      -
    • -
    • -
      -

      getCount

      -
      public int getCount()
      +
    + + + +
      +
    • +

      getCount

      +
      public int getCount()
      int32 count = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCount in interface DaprProtos.ActiveActorsCountOrBuilder
      -
      Returns:
      +
      Returns:
      The count.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ActiveActorsCount parseFrom​(ByteBuffer data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ActiveActorsCount parseFrom​(ByteBuffer data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ActiveActorsCount parseFrom​(com.google.protobuf.ByteString data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ActiveActorsCount parseFrom​(com.google.protobuf.ByteString data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ActiveActorsCount parseFrom​(byte[] data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ActiveActorsCount parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.ActiveActorsCount.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.ActiveActorsCount.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.ActiveActorsCount.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.ActiveActorsCount getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.ActiveActorsCount> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.ActiveActorsCount getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.ActiveActorsCount getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ActiveActorsCountOrBuilder.html b/docs/io/dapr/v1/DaprProtos.ActiveActorsCountOrBuilder.html index 0cd817968..278fc6ec1 100644 --- a/docs/io/dapr/v1/DaprProtos.ActiveActorsCountOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.ActiveActorsCountOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.ActiveActorsCountOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ActiveActorsCountOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.ActiveActorsCountOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.ActiveActorsCountOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.ActiveActorsCountOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      int
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        intgetCount()
        int32 count = 2;
        - - - -
        +
        StringgetType()
        string type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTypeBytes()
        string type = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getType

          -
          String getType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getType

              +
              String getType()
              string type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The type.
              -
        • -
        • -
          -

          getTypeBytes

          -
          com.google.protobuf.ByteString getTypeBytes()
          +
        + + + +
          +
        • +

          getTypeBytes

          +
          com.google.protobuf.ByteString getTypeBytes()
          string type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for type.
          -
      • -
      • -
        -

        getCount

        -
        int getCount()
        +
      + + + +
        +
      • +

        getCount

        +
        int getCount()
        int32 count = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The count.
        -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.Builder.html new file mode 100644 index 000000000..e4b15239a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.Builder.html @@ -0,0 +1,1698 @@ + + + + + +DaprProtos.BulkPublishRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishRequest.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.html new file mode 100644 index 000000000..5baee1673 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequest.html @@ -0,0 +1,1468 @@ + + + + + +DaprProtos.BulkPublishRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.BulkPublishRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkPublishRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.BulkPublishRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.BulkPublishRequestOrBuilder
      +
      + BulkPublishRequest is the message to bulk publish events to pubsub topic
      + 
      + + Protobuf type dapr.proto.runtime.v1.BulkPublishRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetMapField

          +
          protected com.google.protobuf.MapField internalGetMapField​(int number)
          +
          +
          Overrides:
          +
          internalGetMapField in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getPubsubNameBytes

          +
          public com.google.protobuf.ByteString getPubsubNameBytes()
          +
          + The name of the pubsub component
          + 
          + + string pubsub_name = 1;
          +
          +
          Specified by:
          +
          getPubsubNameBytes in interface DaprProtos.BulkPublishRequestOrBuilder
          +
          Returns:
          +
          The bytes for pubsubName.
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          getEntriesCount

          +
          public int getEntriesCount()
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
          +
          Specified by:
          +
          getEntriesCount in interface DaprProtos.BulkPublishRequestOrBuilder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(ByteBuffer data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(ByteBuffer data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(byte[] data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequest parseFrom​(byte[] data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.BulkPublishRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.BulkPublishRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.BulkPublishRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.BulkPublishRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.BulkPublishRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.Builder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.Builder.html new file mode 100644 index 000000000..b15f0ea77 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.Builder.html @@ -0,0 +1,1356 @@ + + + + + +DaprProtos.BulkPublishRequestEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishRequestEntry.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.html new file mode 100644 index 000000000..0b0397334 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntry.html @@ -0,0 +1,1366 @@ + + + + + +DaprProtos.BulkPublishRequestEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishRequestEntry

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.BulkPublishRequestEntry
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkPublishRequestEntryOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.BulkPublishRequestEntry
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.BulkPublishRequestEntryOrBuilder
      +
      + BulkPublishRequestEntry is the message containing the event to be bulk published
      + 
      + + Protobuf type dapr.proto.runtime.v1.BulkPublishRequestEntry
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetMapField

          +
          protected com.google.protobuf.MapField internalGetMapField​(int number)
          +
          +
          Overrides:
          +
          internalGetMapField in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getEntryIdBytes

          +
          public com.google.protobuf.ByteString getEntryIdBytes()
          +
          + The request scoped unique ID referring to this message. Used to map status in response
          + 
          + + string entry_id = 1;
          +
          +
          Specified by:
          +
          getEntryIdBytes in interface DaprProtos.BulkPublishRequestEntryOrBuilder
          +
          Returns:
          +
          The bytes for entryId.
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(ByteBuffer data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(ByteBuffer data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(com.google.protobuf.ByteString data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(com.google.protobuf.ByteString data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(byte[] data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishRequestEntry parseFrom​(byte[] data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.BulkPublishRequestEntry.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.BulkPublishRequestEntry.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.BulkPublishRequestEntry.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.BulkPublishRequestEntry> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.BulkPublishRequestEntry getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntryOrBuilder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntryOrBuilder.html new file mode 100644 index 000000000..b300d0028 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestEntryOrBuilder.html @@ -0,0 +1,526 @@ + + + + + +DaprProtos.BulkPublishRequestEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.BulkPublishRequestEntryOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsMetadata​(String key) +
        + The event level metadata passing to the pubsub component
        +
        StringgetContentType() +
        + The content type for the event
        +
        com.google.protobuf.ByteStringgetContentTypeBytes() +
        + The content type for the event
        +
        StringgetEntryId() +
        + The request scoped unique ID referring to this message.
        +
        com.google.protobuf.ByteStringgetEntryIdBytes() +
        + The request scoped unique ID referring to this message.
        +
        com.google.protobuf.ByteStringgetEvent() +
        + The event which will be pulished to the topic
        +
        Map<String,​String>getMetadata() +
        Deprecated.
        +
        intgetMetadataCount() +
        + The event level metadata passing to the pubsub component
        +
        Map<String,​String>getMetadataMap() +
        + The event level metadata passing to the pubsub component
        +
        StringgetMetadataOrDefault​(String key, + String defaultValue) +
        + The event level metadata passing to the pubsub component
        +
        StringgetMetadataOrThrow​(String key) +
        + The event level metadata passing to the pubsub component
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          String getEntryId()
          +
          + The request scoped unique ID referring to this message. Used to map status in response
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getEntryIdBytes

          +
          com.google.protobuf.ByteString getEntryIdBytes()
          +
          + The request scoped unique ID referring to this message. Used to map status in response
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The bytes for entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getEvent

          +
          com.google.protobuf.ByteString getEvent()
          +
          + The event which will be pulished to the topic
          + 
          + + bytes event = 2;
          +
          +
          Returns:
          +
          The event.
          +
          +
        • +
        + + + +
          +
        • +

          getContentType

          +
          String getContentType()
          +
          + The content type for the event
          + 
          + + string content_type = 3;
          +
          +
          Returns:
          +
          The contentType.
          +
          +
        • +
        + + + +
          +
        • +

          getContentTypeBytes

          +
          com.google.protobuf.ByteString getContentTypeBytes()
          +
          + The content type for the event
          + 
          + + string content_type = 3;
          +
          +
          Returns:
          +
          The bytes for contentType.
          +
          +
        • +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          + The event level metadata passing to the pubsub component
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          + The event level metadata passing to the pubsub component
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          + The event level metadata passing to the pubsub component
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          + The event level metadata passing to the pubsub component
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          + The event level metadata passing to the pubsub component
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestOrBuilder.html new file mode 100644 index 000000000..a2d1840f4 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishRequestOrBuilder.html @@ -0,0 +1,610 @@ + + + + + +DaprProtos.BulkPublishRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.BulkPublishRequestOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getPubsubName

          +
          String getPubsubName()
          +
          + The name of the pubsub component
          + 
          + + string pubsub_name = 1;
          +
          +
          Returns:
          +
          The pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getPubsubNameBytes

          +
          com.google.protobuf.ByteString getPubsubNameBytes()
          +
          + The name of the pubsub component
          + 
          + + string pubsub_name = 1;
          +
          +
          Returns:
          +
          The bytes for pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getTopic

          +
          String getTopic()
          +
          + The pubsub topic
          + 
          + + string topic = 2;
          +
          +
          Returns:
          +
          The topic.
          +
          +
        • +
        + + + +
          +
        • +

          getTopicBytes

          +
          com.google.protobuf.ByteString getTopicBytes()
          +
          + The pubsub topic
          + 
          + + string topic = 2;
          +
          +
          Returns:
          +
          The bytes for topic.
          +
          +
        • +
        + + + +
          +
        • +

          getEntriesList

          +
          List<DaprProtos.BulkPublishRequestEntry> getEntriesList()
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
        • +
        + + + +
          +
        • +

          getEntries

          +
          DaprProtos.BulkPublishRequestEntry getEntries​(int index)
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
        • +
        + + + +
          +
        • +

          getEntriesCount

          +
          int getEntriesCount()
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
        • +
        + + + +
          +
        • +

          getEntriesOrBuilderList

          +
          List<? extends DaprProtos.BulkPublishRequestEntryOrBuilder> getEntriesOrBuilderList()
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
        • +
        + + + +
          +
        • +

          getEntriesOrBuilder

          +
          DaprProtos.BulkPublishRequestEntryOrBuilder getEntriesOrBuilder​(int index)
          +
          + The entries which contain the individual events and associated details to be published
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishRequestEntry entries = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          + The request level metadata passing to to the pubsub components
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          + The request level metadata passing to to the pubsub components
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          + The request level metadata passing to to the pubsub components
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          + The request level metadata passing to to the pubsub components
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          + The request level metadata passing to to the pubsub components
          + 
          + + map<string, string> metadata = 4;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.Builder.html new file mode 100644 index 000000000..fc9d72fa1 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.Builder.html @@ -0,0 +1,1129 @@ + + + + + +DaprProtos.BulkPublishResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishResponse.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.html new file mode 100644 index 000000000..05f74de5a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponse.html @@ -0,0 +1,1128 @@ + + + + + +DaprProtos.BulkPublishResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishResponse

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.BulkPublishResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkPublishResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.BulkPublishResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.BulkPublishResponseOrBuilder
      +
      + BulkPublishResponse is the message returned from a BulkPublishEvent call
      + 
      + + Protobuf type dapr.proto.runtime.v1.BulkPublishResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          FAILEDENTRIES_FIELD_NUMBER

          +
          public static final int FAILEDENTRIES_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getFailedEntriesCount

          +
          public int getFailedEntriesCount()
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
          +
          Specified by:
          +
          getFailedEntriesCount in interface DaprProtos.BulkPublishResponseOrBuilder
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(ByteBuffer data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(ByteBuffer data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(byte[] data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponse parseFrom​(byte[] data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.BulkPublishResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.BulkPublishResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.BulkPublishResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.BulkPublishResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.BulkPublishResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.Builder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.Builder.html new file mode 100644 index 000000000..b02027773 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.Builder.html @@ -0,0 +1,981 @@ + + + + + +DaprProtos.BulkPublishResponseFailedEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishResponseFailedEntry.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.html new file mode 100644 index 000000000..30efd3880 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntry.html @@ -0,0 +1,1128 @@ + + + + + +DaprProtos.BulkPublishResponseFailedEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkPublishResponseFailedEntry

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkPublishResponseFailedEntryOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.BulkPublishResponseFailedEntry
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.BulkPublishResponseFailedEntryOrBuilder
      +
      + BulkPublishResponseFailedEntry is the message containing the entryID and error of a failed event in BulkPublishEvent call
      + 
      + + Protobuf type dapr.proto.runtime.v1.BulkPublishResponseFailedEntry
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + + + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponseFailedEntry parseFrom​(ByteBuffer data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponseFailedEntry parseFrom​(com.google.protobuf.ByteString data)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponseFailedEntry parseFrom​(com.google.protobuf.ByteString data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponseFailedEntry parseFrom​(byte[] data)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.BulkPublishResponseFailedEntry parseFrom​(byte[] data,
          +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.BulkPublishResponseFailedEntry.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.BulkPublishResponseFailedEntry.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.BulkPublishResponseFailedEntry> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.BulkPublishResponseFailedEntry getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html new file mode 100644 index 000000000..757d51af2 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html @@ -0,0 +1,369 @@ + + + + + +DaprProtos.BulkPublishResponseFailedEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.BulkPublishResponseFailedEntryOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetEntryId() +
        + The response scoped unique ID referring to this message
        +
        com.google.protobuf.ByteStringgetEntryIdBytes() +
        + The response scoped unique ID referring to this message
        +
        StringgetError() +
        + The error message if any on failure
        +
        com.google.protobuf.ByteStringgetErrorBytes() +
        + The error message if any on failure
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getEntryId

          +
          String getEntryId()
          +
          + The response scoped unique ID referring to this message
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getEntryIdBytes

          +
          com.google.protobuf.ByteString getEntryIdBytes()
          +
          + The response scoped unique ID referring to this message
          + 
          + + string entry_id = 1;
          +
          +
          Returns:
          +
          The bytes for entryId.
          +
          +
        • +
        + + + +
          +
        • +

          getError

          +
          String getError()
          +
          + The error message if any on failure
          + 
          + + string error = 2;
          +
          +
          Returns:
          +
          The error.
          +
          +
        • +
        + + + +
          +
        • +

          getErrorBytes

          +
          com.google.protobuf.ByteString getErrorBytes()
          +
          + The error message if any on failure
          + 
          + + string error = 2;
          +
          +
          Returns:
          +
          The bytes for error.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkPublishResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseOrBuilder.html new file mode 100644 index 000000000..e3568a829 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.BulkPublishResponseOrBuilder.html @@ -0,0 +1,375 @@ + + + + + +DaprProtos.BulkPublishResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.BulkPublishResponseOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getFailedEntriesList

          +
          List<DaprProtos.BulkPublishResponseFailedEntry> getFailedEntriesList()
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
        • +
        + + + +
          +
        • +

          getFailedEntries

          +
          DaprProtos.BulkPublishResponseFailedEntry getFailedEntries​(int index)
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
        • +
        + + + +
          +
        • +

          getFailedEntriesCount

          +
          int getFailedEntriesCount()
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
        • +
        + + + +
          +
        • +

          getFailedEntriesOrBuilderList

          +
          List<? extends DaprProtos.BulkPublishResponseFailedEntryOrBuilder> getFailedEntriesOrBuilderList()
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
        • +
        + + + +
          +
        • +

          getFailedEntriesOrBuilder

          +
          DaprProtos.BulkPublishResponseFailedEntryOrBuilder getFailedEntriesOrBuilder​(int index)
          +
          + The entries for different events that failed publish in the BulkPublishEvent call
          + 
          + + repeated .dapr.proto.runtime.v1.BulkPublishResponseFailedEntry failedEntries = 1;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.BulkStateItem.Builder.html b/docs/io/dapr/v1/DaprProtos.BulkStateItem.Builder.html index 0d9b18e32..ea912adad 100644 --- a/docs/io/dapr/v1/DaprProtos.BulkStateItem.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.BulkStateItem.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.BulkStateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.BulkStateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.BulkStateItem.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkStateItem.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder> -
    io.dapr.v1.DaprProtos.BulkStateItem.Builder
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.BulkStateItem.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.BulkStateItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.BulkStateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.BulkStateItem build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.BulkStateItem build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.BulkStateItem buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.BulkStateItem buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clone

      +
      public DaprProtos.BulkStateItem.Builder clone()
      +
      +
      Specified by:
      clone in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clone in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clone in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      setField

      -
      public DaprProtos.BulkStateItem.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      clearField

      +
      public DaprProtos.BulkStateItem.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
      +
      +
      Specified by:
      clearField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      clearOneof

      -
      public DaprProtos.BulkStateItem.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.BulkStateItem.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.BulkStateItem.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.BulkStateItem.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                         int index,
      +                                                         Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.BulkStateItem.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.BulkStateItem.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.BulkStateItem.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.BulkStateItem.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        state item key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.BulkStateItem.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        state item key
        
      string key = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      clearData

      +
      public DaprProtos.BulkStateItem.Builder clearData()
        The byte array data
        
      bytes data = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getEtag

      -
      public String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      public com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtagBytes in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      setEtag

      -
      public DaprProtos.BulkStateItem.Builder setEtag(String value)
      +
    + + + +
      +
    • +

      setEtag

      +
      public DaprProtos.BulkStateItem.Builder setEtag​(String value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearEtag

      - +
    + + + +
      +
    • +

      clearEtag

      +
      public DaprProtos.BulkStateItem.Builder clearEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setEtagBytes

      -
      public DaprProtos.BulkStateItem.Builder setEtagBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setEtagBytes

      +
      public DaprProtos.BulkStateItem.Builder setEtagBytes​(com.google.protobuf.ByteString value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getError

      -
      public String getError()
      +
    + + + +
      +
    • +

      getError

      +
      public String getError()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getError in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      public com.google.protobuf.ByteString getErrorBytes()
      +
    + + + + + + + +
      +
    • +

      setError

      +
      public DaprProtos.BulkStateItem.Builder setError​(String value)
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The error to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearError

      -
      public DaprProtos.BulkStateItem.Builder clearError()
      +
    + + + +
      +
    • +

      clearError

      +
      public DaprProtos.BulkStateItem.Builder clearError()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setErrorBytes

      -
      public DaprProtos.BulkStateItem.Builder setErrorBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setErrorBytes

      +
      public DaprProtos.BulkStateItem.Builder setErrorBytes​(com.google.protobuf.ByteString value)
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for error to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.BulkStateItemOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.BulkStateItem.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.BulkStateItem.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.BulkStateItem.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.BulkStateItem.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.BulkStateItem.html b/docs/io/dapr/v1/DaprProtos.BulkStateItem.html index 96d17c64b..c7cf3d963 100644 --- a/docs/io/dapr/v1/DaprProtos.BulkStateItem.html +++ b/docs/io/dapr/v1/DaprProtos.BulkStateItem.html @@ -2,40 +2,59 @@ - -DaprProtos.BulkStateItem (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.BulkStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.BulkStateItem

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.BulkStateItem
    +
    Package io.dapr.v1
    +

    Class DaprProtos.BulkStateItem

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.BulkStateItem
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      All Implemented Interfaces:
      -
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkStateItemOrBuilder, Serializable
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.BulkStateItemOrBuilder, Serializable
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static final class DaprProtos.BulkStateItem -extends com.google.protobuf.GeneratedMessageV3 -implements DaprProtos.BulkStateItemOrBuilder
      +
      public static final class DaprProtos.BulkStateItem
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.BulkStateItemOrBuilder
        BulkStateItem is the response item for a bulk get operation.
        Return values include the item key, data and etag.
        
      Protobuf type dapr.proto.runtime.v1.BulkStateItem
      -
      -
      See Also:
      +
      +
      See Also:
      Serialized Form
      -
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      ERROR_FIELD_NUMBER

      +
      public static final int ERROR_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      METADATA_FIELD_NUMBER

      -
      public static final int METADATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        state item key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
        state item key
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
        The byte array data
        
      bytes data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getEtag

      -
      public String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      public com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtagBytes in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      getError

      -
      public String getError()
      +
    + + + +
      +
    • +

      getError

      +
      public String getError()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getError in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      public com.google.protobuf.ByteString getErrorBytes()
      +
    + + + +
      +
    • +

      getErrorBytes

      +
      public com.google.protobuf.ByteString getErrorBytes()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getErrorBytes in interface DaprProtos.BulkStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for error.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.BulkStateItemOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.BulkStateItemOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(ByteBuffer data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(ByteBuffer data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(com.google.protobuf.ByteString data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(com.google.protobuf.ByteString data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(byte[] data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.BulkStateItem parseFrom​(byte[] data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.BulkStateItem parseFrom(InputStream input) - throws IOException
      -
      -
      Throws:
      -
      IOException
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.BulkStateItem.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.BulkStateItem.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.BulkStateItem.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.BulkStateItem.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.BulkStateItem.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.BulkStateItem getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.BulkStateItem> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.BulkStateItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.BulkStateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.BulkStateItemOrBuilder.html b/docs/io/dapr/v1/DaprProtos.BulkStateItemOrBuilder.html index 020ff849f..982d63edd 100644 --- a/docs/io/dapr/v1/DaprProtos.BulkStateItemOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.BulkStateItemOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.BulkStateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.BulkStateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.BulkStateItemOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.BulkStateItemOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.BulkStateItem, DaprProtos.BulkStateItem.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.BulkStateItemOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.BulkStateItemOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsMetadata​(String key)
        The metadata which will be sent to app.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        The byte array data
        - - - -
        +
        StringgetError()
        The error that was returned from the state store in case of a failed get operation.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetErrorBytes()
        The error that was returned from the state store in case of a failed get operation.
        - - - -
        +
        StringgetEtag()
        The entity tag which represents the specific version of data.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetEtagBytes()
        The entity tag which represents the specific version of data.
        - - - -
        +
        StringgetKey()
        state item key
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetKeyBytes()
        state item key
        - - - -
        -
        Deprecated.
        -
        -
        int
        - -
        +
        Map<String,​String>getMetadata() +
        Deprecated.
        +
        intgetMetadataCount()
        The metadata which will be sent to app.
        - - - -
        +
        Map<String,​String>getMetadataMap()
        The metadata which will be sent to app.
        - - -
        getMetadataOrDefault​(String key, - String defaultValue)
        -
        +
        StringgetMetadataOrDefault​(String key, + String defaultValue)
        The metadata which will be sent to app.
        - - - -
        +
        StringgetMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getKey

          -
          String getKey()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getKey

              +
              String getKey()
                state item key
                
              string key = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The key.
              -
        • -
        • -
          -

          getKeyBytes

          -
          com.google.protobuf.ByteString getKeyBytes()
          +
        + + + +
          +
        • +

          getKeyBytes

          +
          com.google.protobuf.ByteString getKeyBytes()
            state item key
            
          string key = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for key.
          -
      • -
      • -
        -

        getData

        -
        com.google.protobuf.ByteString getData()
        +
      + + + +
        +
      • +

        getData

        +
        com.google.protobuf.ByteString getData()
          The byte array data
          
        bytes data = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The data.
        -
    • -
    • -
      -

      getEtag

      -
      String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      getError

      -
      String getError()
      +
    + + + +
      +
    • +

      getError

      +
      String getError()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      com.google.protobuf.ByteString getErrorBytes()
      +
    + + + +
      +
    • +

      getErrorBytes

      +
      com.google.protobuf.ByteString getErrorBytes()
        The error that was returned from the state store in case of a failed get operation.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for error.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 5;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html index 193017a09..1dc2123f5 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.DeleteBulkStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteBulkStateRequest.Builder> -
    io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DeleteBulkStateRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.DeleteBulkStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteBulkStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.DeleteBulkStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.DeleteBulkStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                    throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.DeleteBulkStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.DeleteBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.DeleteBulkStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getStatesList

      -
      public List<CommonProtos.StateItem> getStatesList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.html b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.html index 561cde3fb..320994b45 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.DeleteBulkStateRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.DeleteBulkStateRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DeleteBulkStateRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.DeleteBulkStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.DeleteBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteBulkStateRequest parseFrom​(ByteBuffer data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteBulkStateRequest parseFrom​(ByteBuffer data,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteBulkStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteBulkStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteBulkStateRequest parseFrom​(byte[] data)
      +                                                   throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteBulkStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.DeleteBulkStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.DeleteBulkStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.DeleteBulkStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.DeleteBulkStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.DeleteBulkStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequestOrBuilder.html index 66322d876..49e40cb35 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteBulkStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteBulkStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.DeleteBulkStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.DeleteBulkStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.DeleteBulkStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getStates

      +
      CommonProtos.StateItem getStates​(int index)
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesCount

      -
      int getStatesCount()
      +
    + + + +
      +
    • +

      getStatesCount

      +
      int getStatesCount()
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesOrBuilderList

      -
      List<? extends CommonProtos.StateItemOrBuilder> getStatesOrBuilderList()
      +
    + + + + + + + +
      +
    • +

      getStatesOrBuilder

      +
      CommonProtos.StateItemOrBuilder getStatesOrBuilder​(int index)
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.Builder.html index aed4e785a..b0649ba03 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.DeleteStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteStateRequest.Builder> -
    io.dapr.v1.DaprProtos.DeleteStateRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DeleteStateRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.DeleteStateRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteStateRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteStateRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.DeleteStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.DeleteStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.DeleteStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.DeleteStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.DeleteStateRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.DeleteStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.DeleteStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.DeleteStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.DeleteStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.DeleteStateRequest.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        The key of the desired state
        
      string key = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasEtag

      -
      public boolean hasEtag()
      +
    + + + +
      +
    • +

      hasEtag

      +
      public boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasEtag in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      -
      public CommonProtos.Etag getEtag()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      clearEtag

      +
      public DaprProtos.DeleteStateRequest.Builder clearEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      getEtagBuilder

      -
      public CommonProtos.Etag.Builder getEtagBuilder()
      +
    + + + +
      +
    • +

      getEtagBuilder

      +
      public CommonProtos.Etag.Builder getEtagBuilder()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      getEtagOrBuilder

      -
      public CommonProtos.EtagOrBuilder getEtagOrBuilder()
      +
    + + + + + + + +
      +
    • +

      hasOptions

      +
      public boolean hasOptions()
        State operation options which includes concurrency/
        consistency/retry_policy.
        
      .dapr.proto.common.v1.StateOptions options = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasOptions in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      -
      public CommonProtos.StateOptions getOptions()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.DeleteStateRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DeleteStateRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.html b/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.html index a48f0644c..ce4ffc488 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.DeleteStateRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.DeleteStateRequest
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DeleteStateRequest

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.DeleteStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      OPTIONS_FIELD_NUMBER

      +
      public static final int OPTIONS_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      METADATA_FIELD_NUMBER

      -
      public static final int METADATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      hasEtag

      -
      public boolean hasEtag()
      +
    + + + +
      +
    • +

      hasEtag

      +
      public boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasEtag in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      -
      public CommonProtos.Etag getEtag()
      +
    + + + + + + + + + + + +
      +
    • +

      hasOptions

      +
      public boolean hasOptions()
        State operation options which includes concurrency/
        consistency/retry_policy.
        
      .dapr.proto.common.v1.StateOptions options = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      hasOptions in interface DaprProtos.DeleteStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      -
      public CommonProtos.StateOptions getOptions()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.DeleteStateRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteStateRequest parseFrom​(ByteBuffer data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteStateRequest parseFrom​(ByteBuffer data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.DeleteStateRequest parseFrom​(byte[] data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.DeleteStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.DeleteStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.DeleteStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.DeleteStateRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.DeleteStateRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.DeleteStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.DeleteStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.DeleteStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.DeleteStateRequestOrBuilder.html index 873805e6b..e189fdcdb 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.DeleteStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.DeleteStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.DeleteStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.DeleteStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.DeleteStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getKeyBytes

      +
      com.google.protobuf.ByteString getKeyBytes()
        The key of the desired state
        
      string key = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      hasEtag

      -
      boolean hasEtag()
      +
    + + + +
      +
    • +

      hasEtag

      +
      boolean hasEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the etag field is set.
      -
    • -
    • -
      -

      getEtag

      - +
    + + + +
      +
    • +

      getEtag

      +
      CommonProtos.Etag getEtag()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagOrBuilder

      -
      CommonProtos.EtagOrBuilder getEtagOrBuilder()
      +
    + + + +
      +
    • +

      getEtagOrBuilder

      +
      CommonProtos.EtagOrBuilder getEtagOrBuilder()
        The entity tag which represents the specific version of data.
        The exact ETag format is defined by the corresponding data store.
        
      .dapr.proto.common.v1.Etag etag = 3;
      -
    • -
    • -
      -

      hasOptions

      -
      boolean hasOptions()
      +
    + + + +
      +
    • +

      hasOptions

      +
      boolean hasOptions()
        State operation options which includes concurrency/
        consistency/retry_policy.
        
      .dapr.proto.common.v1.StateOptions options = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the options field is set.
      -
    • -
    • -
      -

      getOptions

      - +
    + + + +
      +
    • +

      getOptions

      +
      CommonProtos.StateOptions getOptions()
        State operation options which includes concurrency/
        consistency/retry_policy.
        
      .dapr.proto.common.v1.StateOptions options = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The options.
      -
    • -
    • -
      -

      getOptionsOrBuilder

      -
      CommonProtos.StateOptionsOrBuilder getOptionsOrBuilder()
      +
    + + + +
      +
    • +

      getOptionsOrBuilder

      +
      CommonProtos.StateOptionsOrBuilder getOptionsOrBuilder()
        State operation options which includes concurrency/
        consistency/retry_policy.
        
      .dapr.proto.common.v1.StateOptions options = 4;
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 5;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html index 501732a29..12a08ad76 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ExecuteActorStateTransactionRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ExecuteActorStateTransactionRequest.Builder> -
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ExecuteActorStateTransactionRequest.Builder

    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.ExecuteActorStateTransactionRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.html b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.html index 1472405f2..165259430 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteActorStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteActorStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ExecuteActorStateTransactionRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ExecuteActorStateTransactionRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom​(byte[] data)
      +                                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteActorStateTransactionRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.ExecuteActorStateTransactionRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.ExecuteActorStateTransactionRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.ExecuteActorStateTransactionRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html index f1c891e6b..9d600a85b 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteActorStateTransactionRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteActorStateTransactionRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.ExecuteActorStateTransactionRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.ExecuteActorStateTransactionRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getOperationsList

      - +
    + + + + + + + +
      +
    • +

      getOperations

      +
      DaprProtos.TransactionalActorStateOperation getOperations​(int index)
      repeated .dapr.proto.runtime.v1.TransactionalActorStateOperation operations = 3;
      -
    • -
    • -
      -

      getOperationsCount

      -
      int getOperationsCount()
      +
    + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.Builder.html index 1ecd3cb01..42def5582 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteStateTransactionRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ExecuteStateTransactionRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ExecuteStateTransactionRequest.Builder> -
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ExecuteStateTransactionRequest.Builder

    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.ExecuteStateTransactionRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ExecuteStateTransactionRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ExecuteStateTransactionRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.ExecuteStateTransactionRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.html b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.html index 02cbc17ae..8682109bc 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.ExecuteStateTransactionRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.ExecuteStateTransactionRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom​(ByteBuffer data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom​(byte[] data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.ExecuteStateTransactionRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.ExecuteStateTransactionRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.ExecuteStateTransactionRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.ExecuteStateTransactionRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html index b300350d4..5263776c6 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.ExecuteStateTransactionRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.ExecuteStateTransactionRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.ExecuteStateTransactionRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.ExecuteStateTransactionRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.ExecuteStateTransactionRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getOperations

      +
      DaprProtos.TransactionalStateOperation getOperations​(int index)
        Required. transactional operation list.
        
      repeated .dapr.proto.runtime.v1.TransactionalStateOperation operations = 2;
      -
    • -
    • -
      -

      getOperationsCount

      -
      int getOperationsCount()
      +
    + + + +
      +
    • +

      getOperationsCount

      +
      int getOperationsCount()
        Required. transactional operation list.
        
      repeated .dapr.proto.runtime.v1.TransactionalStateOperation operations = 2;
      -
    • -
    • -
      -

      getOperationsOrBuilderList

      -
      List<? extends DaprProtos.TransactionalStateOperationOrBuilder> getOperationsOrBuilderList()
      +
    + + + + + + + +
      +
    • +

      getOperationsOrBuilder

      +
      DaprProtos.TransactionalStateOperationOrBuilder getOperationsOrBuilder​(int index)
        Required. transactional operation list.
        
      repeated .dapr.proto.runtime.v1.TransactionalStateOperation operations = 2;
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata used for transactional operations.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata used for transactional operations.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata used for transactional operations.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata used for transactional operations.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata used for transactional operations.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.Builder.html index d3d01c2d5..35a16b843 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetActorStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetActorStateRequest.Builder> -
    io.dapr.v1.DaprProtos.GetActorStateRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetActorStateRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetActorStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetActorStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetActorStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetActorStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetActorStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetActorStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetActorStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + +
      +
    • +

      getActorType

      +
      public String getActorType()
      string actor_type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorType in interface DaprProtos.GetActorStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorType.
      -
    • -
    • -
      -

      getActorTypeBytes

      -
      public com.google.protobuf.ByteString getActorTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.GetActorStateRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + +
      +
    • +

      getActorId

      +
      public String getActorId()
      string actor_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorId in interface DaprProtos.GetActorStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorId.
      -
    • -
    • -
      -

      getActorIdBytes

      -
      public com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.GetActorStateRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.GetActorStateRequest.Builder setKeyBytes​(com.google.protobuf.ByteString value)
      string key = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.GetActorStateRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.html b/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.html index f197782d8..2ea1386d6 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetActorStateRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetActorStateRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetActorStateRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetActorStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + +
      +
    • +

      getActorType

      +
      public String getActorType()
      string actor_type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorType in interface DaprProtos.GetActorStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorType.
      -
    • -
    • -
      -

      getActorTypeBytes

      -
      public com.google.protobuf.ByteString getActorTypeBytes()
      +
    + + + + + + + +
      +
    • +

      getActorId

      +
      public String getActorId()
      string actor_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorId in interface DaprProtos.GetActorStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorId.
      -
    • -
    • -
      -

      getActorIdBytes

      -
      public com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + + + + + + + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
      string key = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface DaprProtos.GetActorStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateRequest parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateRequest parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateRequest parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetActorStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetActorStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetActorStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetActorStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetActorStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetActorStateRequestOrBuilder.html index eec6f07ec..84919bc75 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetActorStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetActorStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetActorStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - - - -
        +
        StringgetKey()
        string key = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetKeyBytes()
        string key = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getKey

      -
      String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      String getKey()
      string key = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      com.google.protobuf.ByteString getKeyBytes()
      string key = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for key.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.Builder.html index 12c0d764d..daedc46c0 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetActorStateResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetActorStateResponse.Builder> -
    io.dapr.v1.DaprProtos.GetActorStateResponse.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetActorStateResponse.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetActorStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetActorStateResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetActorStateResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetActorStateResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetActorStateResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetActorStateResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetActorStateResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.html b/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.html index 65cc44c06..9608eb632 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetActorStateResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetActorStateResponse
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetActorStateResponse

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetActorStateResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
      bytes data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.GetActorStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateResponse parseFrom​(ByteBuffer data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateResponse parseFrom​(ByteBuffer data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetActorStateResponse parseFrom​(byte[] data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetActorStateResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetActorStateResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetActorStateResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetActorStateResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetActorStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetActorStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetActorStateResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetActorStateResponseOrBuilder.html index 1ac6b2d28..4f15cc57c 100644 --- a/docs/io/dapr/v1/DaprProtos.GetActorStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetActorStateResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetActorStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetActorStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetActorStateResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetActorStateResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetActorStateResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      com.google.protobuf.ByteString
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData()
        bytes data = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getData

          -
          com.google.protobuf.ByteString getData()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getData

              +
              com.google.protobuf.ByteString getData()
              bytes data = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The data.
              -
        -
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.Builder.html index ee38e519d..f6304289f 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkSecretRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretRequest.Builder> -
    io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkSecretRequest.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetBulkSecretRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkSecretRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkSecretRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetBulkSecretRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetBulkSecretRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetBulkSecretRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetBulkSecretRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetBulkSecretRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetBulkSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.GetBulkSecretRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetBulkSecretRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.html index bcb472b15..b25fac2c1 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkSecretRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetBulkSecretRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkSecretRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetBulkSecretRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetBulkSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetBulkSecretRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretRequest parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretRequest parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretRequest parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetBulkSecretRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetBulkSecretRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetBulkSecretRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkSecretRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkSecretRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequestOrBuilder.html index 1a486eec0..1283e7c1c 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetBulkSecretRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetBulkSecretRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetBulkSecretRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of secret store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of secret store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getMetadataCount

        -
        int getMetadataCount()
        +
      + + + +
        +
      • +

        getMetadataCount

        +
        int getMetadataCount()
          The metadata which will be sent to secret store components.
          
        map<string, string> metadata = 2;
        -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 2;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 2;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 2;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.Builder.html index ac87888da..f306ad7f4 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkSecretResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretResponse.Builder> -
    io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkSecretResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetBulkSecretResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkSecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkSecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetBulkSecretResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetBulkSecretResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkSecretResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetBulkSecretResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.html index 16bf0da88..fd8fc0623 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkSecretResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetBulkSecretResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkSecretResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetBulkSecretResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDataCount

      -
      public int getDataCount()
      -
      Description copied from interface: DaprProtos.GetBulkSecretResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getDataOrThrow

      +
      public DaprProtos.SecretResponse getDataOrThrow​(String key)
        data hold the secret values. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, .dapr.proto.runtime.v1.SecretResponse> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrThrow in interface DaprProtos.GetBulkSecretResponseOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretResponse parseFrom​(ByteBuffer data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretResponse parseFrom​(ByteBuffer data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkSecretResponse parseFrom​(byte[] data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkSecretResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetBulkSecretResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetBulkSecretResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetBulkSecretResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkSecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkSecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponseOrBuilder.html index 46e5d36ba..201e4c47c 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkSecretResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkSecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkSecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetBulkSecretResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetBulkSecretResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetBulkSecretResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + + + + + +
      +
    • +

      getDataOrThrow

      +
      DaprProtos.SecretResponse getDataOrThrow​(String key)
        data hold the secret values. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, .dapr.proto.runtime.v1.SecretResponse> data = 1;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.Builder.html index ac0feffb3..dbdb6258b 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkStateRequest.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkStateRequest.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateRequest.Builder> -
    io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetBulkStateRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetBulkStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetBulkStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetBulkStateRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetBulkStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetBulkStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetBulkStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.GetBulkStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      addKeysBytes

      +
      public DaprProtos.GetBulkStateRequest.Builder addKeysBytes​(com.google.protobuf.ByteString value)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes of the keys to add.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getParallelism

      -
      public int getParallelism()
      +
    + + + + + + + +
      +
    • +

      setParallelism

      +
      public DaprProtos.GetBulkStateRequest.Builder setParallelism​(int value)
        The number of parallel operations executed on the state store for a get operation.
        
      int32 parallelism = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The parallelism to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearParallelism

      -
      public DaprProtos.GetBulkStateRequest.Builder clearParallelism()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetBulkStateRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.html index c1ee0e47f..cb813ff5b 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkStateRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkStateRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetBulkStateRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetBulkStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      public com.google.protobuf.ByteString getKeysBytes​(int index)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysBytes in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getParallelism

      -
      public int getParallelism()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetBulkStateRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateRequest parseFrom​(ByteBuffer data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateRequest parseFrom​(ByteBuffer data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateRequest parseFrom​(byte[] data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetBulkStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetBulkStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetBulkStateRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetBulkStateRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetBulkStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequestOrBuilder.html index 6d5b00d55..dcd7d745c 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetBulkStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetBulkStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetBulkStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of state store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of state store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getKeysList

        -
        List<String> getKeysList()
        +
      + + + +
        +
      • +

        getKeysList

        +
        List<String> getKeysList()
          The keys to get.
          
        repeated string keys = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        A list containing the keys.
        -
    • -
    • -
      -

      getKeysCount

      -
      int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      int getKeysCount()
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      String getKeys​(int index)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      com.google.protobuf.ByteString getKeysBytes​(int index)
        The keys to get.
        
      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getParallelism

      -
      int getParallelism()
      +
    + + + +
      +
    • +

      getParallelism

      +
      int getParallelism()
        The number of parallel operations executed on the state store for a get operation.
        
      int32 parallelism = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The parallelism.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.Builder.html index 5f7c514db..22e364621 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkStateResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateResponse.Builder> -
    io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkStateResponse.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetBulkStateResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetBulkStateResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetBulkStateResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetBulkStateResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getItemsBuilderList

      +
      public List<DaprProtos.BulkStateItem.Builder> getItemsBuilderList()
        The list of items containing the keys to get values for.
        
      repeated .dapr.proto.runtime.v1.BulkStateItem items = 1;
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.GetBulkStateResponse.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.html index e210d27b0..f0f86bfef 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetBulkStateResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetBulkStateResponse
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetBulkStateResponse

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetBulkStateResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getItemsList

      -
      public List<DaprProtos.BulkStateItem> getItemsList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateResponse parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateResponse parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetBulkStateResponse parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetBulkStateResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetBulkStateResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetBulkStateResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetBulkStateResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetBulkStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetBulkStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponseOrBuilder.html index fa42e8620..8d13a60eb 100644 --- a/docs/io/dapr/v1/DaprProtos.GetBulkStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetBulkStateResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetBulkStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetBulkStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetBulkStateResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetBulkStateResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetBulkStateResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + +
      +
    • +

      getItemsOrBuilder

      +
      DaprProtos.BulkStateItemOrBuilder getItemsOrBuilder​(int index)
        The list of items containing the keys to get values for.
        
      repeated .dapr.proto.runtime.v1.BulkStateItem items = 1;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.Builder.html index 91f1729f5..fd93f9b3d 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetConfigurationRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationRequest.Builder> -
    io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetConfigurationRequest.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetConfigurationRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetConfigurationRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetConfigurationRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetConfigurationRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        Required. The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.GetConfigurationRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        Required. The name of configuration store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -685,18 +946,21 @@ 

      getKeysList

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -704,18 +968,21 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -723,20 +990,23 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      public com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -744,21 +1014,24 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysBytes in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      setKeys

      -
      public DaprProtos.GetConfigurationRequest.Builder setKeys(int index, - String value)
      +
    + + + +
      +
    • +

      setKeys

      +
      public DaprProtos.GetConfigurationRequest.Builder setKeys​(int index,
      +                                                          String value)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -766,19 +1039,22 @@ 

      setKeys

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index to set the value at.
      value - The keys to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      addKeys

      - +
    + + + + + + + + + + + +
      +
    • +

      clearKeys

      +
      public DaprProtos.GetConfigurationRequest.Builder clearKeys()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -824,16 +1106,19 @@ 

      clearKeys

      repeated string keys = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      addKeysBytes

      -
      public DaprProtos.GetConfigurationRequest.Builder addKeysBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      addKeysBytes

      +
      public DaprProtos.GetConfigurationRequest.Builder addKeysBytes​(com.google.protobuf.ByteString value)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -841,189 +1126,286 @@ 

      addKeysBytes

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes of the keys to add.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetConfigurationRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.html index d3b34464e..6fa3edab9 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetConfigurationRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetConfigurationRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetConfigurationRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetConfigurationRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        Required. The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        Required. The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -509,18 +764,21 @@ 

      getKeysList

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -528,18 +786,21 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -547,20 +808,23 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      public com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -568,403 +832,557 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysBytes in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetConfigurationRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetConfigurationRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationRequest parseFrom​(ByteBuffer data)
      +                                                    throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationRequest parseFrom​(ByteBuffer data,
      +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                    throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                    throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                    throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationRequest parseFrom​(byte[] data)
      +                                                    throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetConfigurationRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetConfigurationRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetConfigurationRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequestOrBuilder.html index ff9d8c8c2..3644e7d00 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetConfigurationRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetConfigurationRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetConfigurationRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                Required. The name of configuration store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            Required. The name of configuration store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getKeysList

        -
        List<String> getKeysList()
        +
      + + + +
        +
      • +

        getKeysList

        +
        List<String> getKeysList()
          Optional. The key of the configuration item to fetch.
          If set, only query for the specified configuration items.
        @@ -239,16 +336,19 @@ 

        getKeysList

        repeated string keys = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        A list containing the keys.
        -
    • -
    • -
      -

      getKeysCount

      -
      int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -256,16 +356,19 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -273,18 +376,21 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -292,91 +398,167 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        Optional. The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.Builder.html index 34482a812..02f180f21 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetConfigurationResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationResponse.Builder> -
    io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetConfigurationResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetConfigurationResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetConfigurationResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetConfigurationResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetConfigurationResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetConfigurationResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.html index 9f49afcc5..9cc5ce4d7 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetConfigurationResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetConfigurationResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetConfigurationResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetConfigurationResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getItemsCount

      -
      public int getItemsCount()
      -
      Description copied from interface: DaprProtos.GetConfigurationResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationResponse parseFrom​(ByteBuffer data)
      +                                                     throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationResponse parseFrom​(ByteBuffer data,
      +                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                     throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                     throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                     throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetConfigurationResponse parseFrom​(byte[] data)
      +                                                     throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetConfigurationResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetConfigurationResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetConfigurationResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetConfigurationResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponseOrBuilder.html index cb476df6d..366a304f0 100644 --- a/docs/io/dapr/v1/DaprProtos.GetConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetConfigurationResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetConfigurationResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetConfigurationResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetConfigurationResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.Builder.html index 776220abe..096db1c32 100644 --- a/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetMetadataResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetMetadataResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetMetadataResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetMetadataResponse.Builder> -
    io.dapr.v1.DaprProtos.GetMetadataResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetMetadataResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetMetadataResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetMetadataResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetMetadataResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetMetadataResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetMetadataResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetMetadataResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetMetadataResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetMetadataResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetMetadataResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetMetadataResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetMetadataResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetMetadataResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getSubscriptionsBuilder

      +
      public DaprProtos.PubsubSubscription.Builder getSubscriptionsBuilder​(int index)
      +
      repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
      +
    • +
    + + + + + + + + + + + + + + + +
      +
    • +

      addSubscriptionsBuilder

      +
      public DaprProtos.PubsubSubscription.Builder addSubscriptionsBuilder​(int index)
      +
      repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
      +
    • +
    + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetMetadataResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetMetadataResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.html b/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.html index b252ec9f7..5e1cfa6c3 100644 --- a/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetMetadataResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetMetadataResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetMetadataResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetMetadataResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetMetadataResponse
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetMetadataResponse

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetMetadataResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      EXTENDED_METADATA_FIELD_NUMBER

      +
      public static final int EXTENDED_METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + + +
      +
    • +

      SUBSCRIPTIONS_FIELD_NUMBER

      +
      public static final int SUBSCRIPTIONS_FIELD_NUMBER
      +
      +
      See Also:
      +
      Constant Field Values
      +
    • +
    + + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetMetadataResponse parseFrom​(ByteBuffer data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetMetadataResponse parseFrom​(ByteBuffer data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetMetadataResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetMetadataResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetMetadataResponse parseFrom​(byte[] data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetMetadataResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetMetadataResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetMetadataResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetMetadataResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetMetadataResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetMetadataResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetMetadataResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetMetadataResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetMetadataResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetMetadataResponseOrBuilder.html index f751e7bb5..0fc3edc7a 100644 --- a/docs/io/dapr/v1/DaprProtos.GetMetadataResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetMetadataResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetMetadataResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetMetadataResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetMetadataResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetMetadataResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetMetadataResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getActiveActorsCount

      +
      DaprProtos.ActiveActorsCount getActiveActorsCount​(int index)
      repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
      -
    • -
    • -
      -

      getActiveActorsCountCount

      -
      int getActiveActorsCountCount()
      +
    + + + +
      +
    • +

      getActiveActorsCountCount

      +
      int getActiveActorsCountCount()
      repeated .dapr.proto.runtime.v1.ActiveActorsCount active_actors_count = 2;
      -
    • -
    • -
      -

      getActiveActorsCountOrBuilderList

      -
      List<? extends DaprProtos.ActiveActorsCountOrBuilder> getActiveActorsCountOrBuilderList()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getRegisteredComponents

      +
      DaprProtos.RegisteredComponents getRegisteredComponents​(int index)
      repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
      -
    • -
    • -
      -

      getRegisteredComponentsCount

      -
      int getRegisteredComponentsCount()
      +
    + + + +
      +
    • +

      getRegisteredComponentsCount

      +
      int getRegisteredComponentsCount()
      repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
      -
    • -
    • -
      -

      getRegisteredComponentsOrBuilderList

      -
      List<? extends DaprProtos.RegisteredComponentsOrBuilder> getRegisteredComponentsOrBuilderList()
      +
    + + + + + + + +
      +
    • +

      getRegisteredComponentsOrBuilder

      +
      DaprProtos.RegisteredComponentsOrBuilder getRegisteredComponentsOrBuilder​(int index)
      repeated .dapr.proto.runtime.v1.RegisteredComponents registered_components = 3;
      -
    • -
    • -
      -

      getExtendedMetadataCount

      -
      int getExtendedMetadataCount()
      +
    + + + +
      +
    • +

      getExtendedMetadataCount

      +
      int getExtendedMetadataCount()
      map<string, string> extended_metadata = 4;
      -
    • -
    • -
      -

      containsExtendedMetadata

      -
      boolean containsExtendedMetadata(String key)
      +
    + + + +
      +
    • +

      containsExtendedMetadata

      +
      boolean containsExtendedMetadata​(String key)
      map<string, string> extended_metadata = 4;
      -
    • -
    • -
      -

      getExtendedMetadata

      -
      @Deprecated -Map<String,​String> getExtendedMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getExtendedMetadataMap

      +
      Map<String,​String> getExtendedMetadataMap()
      map<string, string> extended_metadata = 4;
      -
    • -
    • -
      -

      getExtendedMetadataOrDefault

      -
      String getExtendedMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getExtendedMetadataOrDefault

      +
      String getExtendedMetadataOrDefault​(String key,
      +                                    String defaultValue)
      map<string, string> extended_metadata = 4;
      -
    • -
    • -
      -

      getExtendedMetadataOrThrow

      -
      String getExtendedMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getExtendedMetadataOrThrow

      +
      String getExtendedMetadataOrThrow​(String key)
      map<string, string> extended_metadata = 4;
      -
    - + + + + + + + +
      +
    • +

      getSubscriptions

      +
      DaprProtos.PubsubSubscription getSubscriptions​(int index)
      +
      repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
      +
    • +
    + + + +
      +
    • +

      getSubscriptionsCount

      +
      int getSubscriptionsCount()
      +
      repeated .dapr.proto.runtime.v1.PubsubSubscription subscriptions = 5;
      +
    • +
    + + + + + + + + - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetSecretRequest.Builder.html index 483119edb..525b26fc9 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetSecretRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder> -
    io.dapr.v1.DaprProtos.GetSecretRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetSecretRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetSecretRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetSecretRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetSecretRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetSecretRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetSecretRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetSecretRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetSecretRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetSecretRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetSecretRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.GetSecretRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The name of secret key.
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.GetSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.GetSecretRequest.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        The name of secret key.
        
      string key = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetSecretRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.GetSecretRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.GetSecretRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetSecretRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretRequest.html b/docs/io/dapr/v1/DaprProtos.GetSecretRequest.html index 361e7a24d..b1b1ade6a 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetSecretRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetSecretRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetSecretRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetSecretRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of secret store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.GetSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The name of secret key.
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.GetSecretRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetSecretRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretRequest parseFrom​(ByteBuffer data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretRequest parseFrom​(ByteBuffer data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretRequest parseFrom​(byte[] data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetSecretRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetSecretRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetSecretRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetSecretRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetSecretRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetSecretRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetSecretRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetSecretRequestOrBuilder.html index 8eddef605..9081174b4 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetSecretRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetSecretRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetSecretRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of secret store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of secret store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getKey

        -
        String getKey()
        +
      + + + +
        +
      • +

        getKey

        +
        String getKey()
          The name of secret key.
          
        string key = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The key.
        -
    • -
    • -
      -

      getKeyBytes

      -
      com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      com.google.protobuf.ByteString getKeyBytes()
        The name of secret key.
        
      string key = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to secret store components.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetSecretResponse.Builder.html index a3bc650c2..4e03a2ee3 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetSecretResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretResponse.Builder> -
    io.dapr.v1.DaprProtos.GetSecretResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetSecretResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetSecretResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetSecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetSecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetSecretResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetSecretResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetSecretResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetSecretResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + +
      +
    • +

      containsData

      +
      public boolean containsData​(String key)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      containsData in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getData

      -
      @Deprecated -public Map<String,​String> getData()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getDataMap

      +
      public Map<String,​String> getDataMap()
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataMap in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getDataOrDefault

      -
      public String getDataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getDataOrDefault

      +
      public String getDataOrDefault​(String key,
      +                               String defaultValue)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrDefault in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getDataOrThrow

      -
      public String getDataOrThrow(String key)
      +
    + + + + + + + + + + + +
      +
    • +

      removeData

      +
      public DaprProtos.GetSecretResponse.Builder removeData​(String key)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
    • -
    • -
      -

      getMutableData

      -
      @Deprecated -public Map<String,​String> getMutableData()
      -
      Deprecated.
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetSecretResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetSecretResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretResponse.html b/docs/io/dapr/v1/DaprProtos.GetSecretResponse.html index 3696d6e5b..825174eaa 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetSecretResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetSecretResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetSecretResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetSecretResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDataCount

      -
      public int getDataCount()
      -
      Description copied from interface: DaprProtos.GetSecretResponseOrBuilder
      +
    + + + + + + + +
      +
    • +

      containsData

      +
      public boolean containsData​(String key)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      containsData in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getData

      -
      @Deprecated -public Map<String,​String> getData()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getDataMap

      +
      public Map<String,​String> getDataMap()
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataMap in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getDataOrDefault

      -
      public String getDataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getDataOrDefault

      +
      public String getDataOrDefault​(String key,
      +                               String defaultValue)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrDefault in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      getDataOrThrow

      -
      public String getDataOrThrow(String key)
      +
    + + + +
      +
    • +

      getDataOrThrow

      +
      public String getDataOrThrow​(String key)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataOrThrow in interface DaprProtos.GetSecretResponseOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretResponse parseFrom​(ByteBuffer data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretResponse parseFrom​(ByteBuffer data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetSecretResponse parseFrom​(byte[] data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetSecretResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetSecretResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetSecretResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetSecretResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetSecretResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetSecretResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetSecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetSecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetSecretResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetSecretResponseOrBuilder.html index 5e8428da0..c4a578af1 100644 --- a/docs/io/dapr/v1/DaprProtos.GetSecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetSecretResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetSecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetSecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetSecretResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetSecretResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetSecretResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsData​(String key)
        data is the secret value.
        - - - -
        -
        Deprecated.
        -
        -
        int
        - -
        +
        Map<String,​String>getData() +
        Deprecated.
        +
        intgetDataCount()
        data is the secret value.
        - - - -
        +
        Map<String,​String>getDataMap()
        data is the secret value.
        - - -
        getDataOrDefault​(String key, - String defaultValue)
        -
        +
        StringgetDataOrDefault​(String key, + String defaultValue)
        data is the secret value.
        - - - -
        +
        StringgetDataOrThrow​(String key)
        data is the secret value.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getDataCount

          -
          int getDataCount()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getDataCount

              +
              int getDataCount()
                data is the secret value. Some secret store, such as kubernetes secret
                store, can save multiple secrets for single secret key.
                
              map<string, string> data = 1;
              -
        • -
        • -
          -

          containsData

          -
          boolean containsData(String key)
          +
        + + + +
          +
        • +

          containsData

          +
          boolean containsData​(String key)
            data is the secret value. Some secret store, such as kubernetes secret
            store, can save multiple secrets for single secret key.
            
          map<string, string> data = 1;
          -
      • -
      • -
        -

        getData

        -
        @Deprecated -Map<String,​String> getData()
        -
        Deprecated.
        +
      + + + +
    • -
    • -
      -

      getDataMap

      -
      Map<String,​String> getDataMap()
      +
    + + + +
      +
    • +

      getDataMap

      +
      Map<String,​String> getDataMap()
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
    • -
    • -
      -

      getDataOrDefault

      -
      String getDataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getDataOrDefault

      +
      String getDataOrDefault​(String key,
      +                        String defaultValue)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
    • -
    • -
      -

      getDataOrThrow

      -
      String getDataOrThrow(String key)
      +
    + + + +
      +
    • +

      getDataOrThrow

      +
      String getDataOrThrow​(String key)
        data is the secret value. Some secret store, such as kubernetes secret
        store, can save multiple secrets for single secret key.
        
      map<string, string> data = 1;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetStateRequest.Builder.html index 70548ead2..4ab95add6 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder> -
    io.dapr.v1.DaprProtos.GetStateRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetStateRequest.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetStateRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetStateRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.GetStateRequest.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                           int index,
      +                                                           Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.GetStateRequest.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.GetStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.GetStateRequest.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        The key of the desired state
        
      string key = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConsistencyValue

      -
      public int getConsistencyValue()
      +
    + + + +
      +
    • +

      getConsistencyValue

      +
      public int getConsistencyValue()
        The read consistency of the state store.
        
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getConsistencyValue in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The enum numeric value on the wire for consistency.
      -
    • -
    • -
      -

      setConsistencyValue

      -
      public DaprProtos.GetStateRequest.Builder setConsistencyValue(int value)
      +
    + + + +
      +
    • +

      setConsistencyValue

      +
      public DaprProtos.GetStateRequest.Builder setConsistencyValue​(int value)
        The read consistency of the state store.
        
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The enum numeric value on the wire for consistency to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getConsistency

      - +
    + + + + + + + + + + + +
      +
    • +

      clearConsistency

      +
      public DaprProtos.GetStateRequest.Builder clearConsistency()
        The read consistency of the state store.
        
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetStateRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.GetStateRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.GetStateRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetStateRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateRequest.html b/docs/io/dapr/v1/DaprProtos.GetStateRequest.html index 60b317202..f6ef48065 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetStateRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetStateRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetStateRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
        The key of the desired state
        
      string key = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface DaprProtos.GetStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getConsistencyValue

      -
      public int getConsistencyValue()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetStateRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateRequest parseFrom​(ByteBuffer data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateRequest parseFrom​(ByteBuffer data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateRequest parseFrom​(byte[] data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.GetStateRequest.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.GetStateRequest.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetStateRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetStateRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetStateRequestOrBuilder.html index f7d916428..cb515e823 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of state store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of state store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getKey

        -
        String getKey()
        +
      + + + +
        +
      • +

        getKey

        +
        String getKey()
          The key of the desired state
          
        string key = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The key.
        -
    • -
    • -
      -

      getKeyBytes

      -
      com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      com.google.protobuf.ByteString getKeyBytes()
        The key of the desired state
        
      string key = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getConsistencyValue

      -
      int getConsistencyValue()
      +
    + + + +
      +
    • +

      getConsistencyValue

      +
      int getConsistencyValue()
        The read consistency of the state store.
        
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The enum numeric value on the wire for consistency.
      -
    • -
    • -
      -

      getConsistency

      - +
    + + + +
      +
    • +

      getConsistency

      +
      CommonProtos.StateOptions.StateConsistency getConsistency()
        The read consistency of the state store.
        
      .dapr.proto.common.v1.StateOptions.StateConsistency consistency = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The consistency.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 4;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetStateResponse.Builder.html index 8d13c3847..56849269d 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetStateResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder> -
    io.dapr.v1.DaprProtos.GetStateResponse.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetStateResponse.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.GetStateResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.GetStateResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.GetStateResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.GetStateResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.GetStateResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.GetStateResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.GetStateResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.GetStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + + + + + +
      +
    • +

      setEtag

      +
      public DaprProtos.GetStateResponse.Builder setEtag​(String value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearEtag

      - +
    + + + +
      +
    • +

      clearEtag

      +
      public DaprProtos.GetStateResponse.Builder clearEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setEtagBytes

      -
      public DaprProtos.GetStateResponse.Builder setEtagBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setEtagBytes

      +
      public DaprProtos.GetStateResponse.Builder setEtagBytes​(com.google.protobuf.ByteString value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetStateResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.GetStateResponse.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.GetStateResponse.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.GetStateResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.GetStateResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateResponse.html b/docs/io/dapr/v1/DaprProtos.GetStateResponse.html index 376a13d0a..fa6d7aec9 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateResponse.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.GetStateResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.GetStateResponse
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetStateResponse

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetStateResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
        The byte array data
        
      bytes data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.GetStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getEtag

      -
      public String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.GetStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      public com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtagBytes in interface DaprProtos.GetStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.GetStateResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.GetStateResponseOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateResponse parseFrom​(ByteBuffer data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateResponse parseFrom​(ByteBuffer data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.GetStateResponse parseFrom​(byte[] data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.GetStateResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.GetStateResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.GetStateResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.GetStateResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.GetStateResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.GetStateResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.GetStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.GetStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetStateResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetStateResponseOrBuilder.html index 0418360e2..4a54c4970 100644 --- a/docs/io/dapr/v1/DaprProtos.GetStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.GetStateResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.GetStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.GetStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.GetStateResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetStateResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.GetStateResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsMetadata​(String key)
        The metadata which will be sent to app.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        The byte array data
        - - - -
        +
        StringgetEtag()
        The entity tag which represents the specific version of data.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetEtagBytes()
        The entity tag which represents the specific version of data.
        - - - -
        -
        Deprecated.
        -
        -
        int
        - -
        +
        Map<String,​String>getMetadata() +
        Deprecated.
        +
        intgetMetadataCount()
        The metadata which will be sent to app.
        - - - -
        +
        Map<String,​String>getMetadataMap()
        The metadata which will be sent to app.
        - - -
        getMetadataOrDefault​(String key, - String defaultValue)
        -
        +
        StringgetMetadataOrDefault​(String key, + String defaultValue)
        The metadata which will be sent to app.
        - - - -
        +
        StringgetMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getData

          -
          com.google.protobuf.ByteString getData()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getData

              +
              com.google.protobuf.ByteString getData()
                The byte array data
                
              bytes data = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The data.
              -
        • -
        • -
          -

          getEtag

          -
          String getEtag()
          +
        + + + +
          +
        • +

          getEtag

          +
          String getEtag()
            The entity tag which represents the specific version of data.
            ETag format is defined by the corresponding data store.
            
          string etag = 2;
          -
          -
          Returns:
          +
          +
          Returns:
          The etag.
          -
      • -
      • -
        -

        getEtagBytes

        -
        com.google.protobuf.ByteString getEtagBytes()
        +
      + + + +
        +
      • +

        getEtagBytes

        +
        com.google.protobuf.ByteString getEtagBytes()
          The entity tag which represents the specific version of data.
          ETag format is defined by the corresponding data store.
          
        string etag = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The bytes for etag.
        -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.Builder.html new file mode 100644 index 000000000..9ac4a335a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.Builder.html @@ -0,0 +1,1040 @@ + + + + + +DaprProtos.GetWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetWorkflowRequest.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.html new file mode 100644 index 000000000..049a24051 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequest.html @@ -0,0 +1,1167 @@ + + + + + +DaprProtos.GetWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetWorkflowRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetWorkflowRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_TYPE_FIELD_NUMBER

          +
          public static final int WORKFLOW_TYPE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(ByteBuffer data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(byte[] data)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowRequest parseFrom​(byte[] data,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.GetWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.GetWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.GetWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.GetWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.GetWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..cdf95babc --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowRequestOrBuilder.html @@ -0,0 +1,391 @@ + + + + + +DaprProtos.GetWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        string instance_id = 1;
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        string instance_id = 1;
        +
        StringgetWorkflowComponent() +
        string workflow_component = 3;
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        string workflow_component = 3;
        +
        StringgetWorkflowType() +
        string workflow_type = 2;
        +
        com.google.protobuf.ByteStringgetWorkflowTypeBytes() +
        string workflow_type = 2;
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowType

          +
          String getWorkflowType()
          +
          string workflow_type = 2;
          +
          +
          Returns:
          +
          The workflowType.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowTypeBytes

          +
          com.google.protobuf.ByteString getWorkflowTypeBytes()
          +
          string workflow_type = 2;
          +
          +
          Returns:
          +
          The bytes for workflowType.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          string workflow_component = 3;
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          string workflow_component = 3;
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.Builder.html new file mode 100644 index 000000000..216a83424 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.Builder.html @@ -0,0 +1,1134 @@ + + + + + +DaprProtos.GetWorkflowResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetWorkflowResponse.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.html new file mode 100644 index 000000000..11cb4da50 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponse.html @@ -0,0 +1,1247 @@ + + + + + +DaprProtos.GetWorkflowResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.GetWorkflowResponse

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.GetWorkflowResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          START_TIME_FIELD_NUMBER

          +
          public static final int START_TIME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          METADATA_FIELD_NUMBER

          +
          public static final int METADATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetMapField

          +
          protected com.google.protobuf.MapField internalGetMapField​(int number)
          +
          +
          Overrides:
          +
          internalGetMapField in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(ByteBuffer data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(ByteBuffer data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(byte[] data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.GetWorkflowResponse parseFrom​(byte[] data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.GetWorkflowResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.GetWorkflowResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.GetWorkflowResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.GetWorkflowResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.GetWorkflowResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.GetWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponseOrBuilder.html new file mode 100644 index 000000000..c6ede0461 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.GetWorkflowResponseOrBuilder.html @@ -0,0 +1,434 @@ + + + + + +DaprProtos.GetWorkflowResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.GetWorkflowResponseOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getStartTime

          +
          long getStartTime()
          +
          int64 start_time = 2;
          +
          +
          Returns:
          +
          The startTime.
          +
          +
        • +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          map<string, string> metadata = 3;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.Builder.html index 5d5d204aa..bb3ea0885 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeActorRequest.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeActorRequest.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorRequest.Builder> -
    io.dapr.v1.DaprProtos.InvokeActorRequest.Builder
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.InvokeActorRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeActorRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeActorRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.InvokeActorRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.InvokeActorRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.InvokeActorRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.InvokeActorRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.InvokeActorRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.InvokeActorRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + +
      +
    • +

      getActorType

      +
      public String getActorType()
      string actor_type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorType in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorType.
      -
    • -
    • -
      -

      getActorTypeBytes

      -
      public com.google.protobuf.ByteString getActorTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.InvokeActorRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + +
      +
    • +

      getActorId

      +
      public String getActorId()
      string actor_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorId in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorId.
      -
    • -
    • -
      -

      getActorIdBytes

      -
      public com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.InvokeActorRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMethod

      -
      public String getMethod()
      +
    + + + +
      +
    • +

      getMethod

      +
      public String getMethod()
      string method = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethod in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The method.
      -
    • -
    • -
      -

      getMethodBytes

      -
      public com.google.protobuf.ByteString getMethodBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setMethodBytes

      +
      public DaprProtos.InvokeActorRequest.Builder setMethodBytes​(com.google.protobuf.ByteString value)
      string method = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for method to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.InvokeActorRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.html b/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.html index 49f4ec016..14b65807c 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeActorRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.InvokeActorRequest
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeActorRequest

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.InvokeActorRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DATA_FIELD_NUMBER

      +
      public static final int DATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      METADATA_FIELD_NUMBER

      -
      public static final int METADATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + +
      +
    • +

      getActorType

      +
      public String getActorType()
      string actor_type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorType in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorType.
      -
    • -
    • -
      -

      getActorTypeBytes

      -
      public com.google.protobuf.ByteString getActorTypeBytes()
      +
    + + + +
      +
    • +

      getActorTypeBytes

      +
      public com.google.protobuf.ByteString getActorTypeBytes()
      string actor_type = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorTypeBytes in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for actorType.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + +
      +
    • +

      getActorId

      +
      public String getActorId()
      string actor_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getActorId in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The actorId.
      -
    • -
    • -
      -

      getActorIdBytes

      -
      public com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + + + + + +
      +
    • +

      getMethod

      +
      public String getMethod()
      string method = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethod in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The method.
      -
    • -
    • -
      -

      getMethodBytes

      -
      public com.google.protobuf.ByteString getMethodBytes()
      +
    + + + +
      +
    • +

      getMethodBytes

      +
      public com.google.protobuf.ByteString getMethodBytes()
      string method = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMethodBytes in interface DaprProtos.InvokeActorRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for method.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorRequest parseFrom​(ByteBuffer data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorRequest parseFrom​(ByteBuffer data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorRequest parseFrom​(byte[] data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.InvokeActorRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.InvokeActorRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.InvokeActorRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.InvokeActorRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.InvokeActorRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeActorRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeActorRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.InvokeActorRequestOrBuilder.html index cac9a0f21..c391aa26f 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.InvokeActorRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.InvokeActorRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.InvokeActorRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getMethod

      -
      String getMethod()
      +
    + + + +
      +
    • +

      getMethod

      +
      String getMethod()
      string method = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The method.
      -
    • -
    • -
      -

      getMethodBytes

      -
      com.google.protobuf.ByteString getMethodBytes()
      +
    + + + +
      +
    • +

      getMethodBytes

      +
      com.google.protobuf.ByteString getMethodBytes()
      string method = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for method.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
      bytes data = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
      map<string, string> metadata = 5;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.Builder.html index 3c075cb2f..f2a9bd489 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeActorResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorResponse.Builder> -
    io.dapr.v1.DaprProtos.InvokeActorResponse.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeActorResponse.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeActorResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.InvokeActorResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.InvokeActorResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.InvokeActorResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.InvokeActorResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.InvokeActorResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.InvokeActorResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.InvokeActorResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeActorResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.html b/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.html index 6da5282a0..af91d2101 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeActorResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.InvokeActorResponse
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeActorResponse

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.InvokeActorResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class DaprProtos.InvokeActorResponse.Builder
        InvokeActorResponse is the method that returns an actor invocation response.
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intDATA_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object obj)
      -
       
      -
      com.google.protobuf.ByteString
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          DATA_FIELD_NUMBER

          -
          public static final int DATA_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        newInstance

        -
        protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        -
        -
        Overrides:
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            newInstance

            +
            protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
            +
            +
            Overrides:
            newInstance in class com.google.protobuf.GeneratedMessageV3
            -
      • -
      • -
        -

        getUnknownFields

        -
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        -
        -
        Specified by:
        +
      + + + +
        +
      • +

        getUnknownFields

        +
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        +
        +
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        -
        Overrides:
        +
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
        -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
      bytes data = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.InvokeActorResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorResponse parseFrom​(ByteBuffer data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorResponse parseFrom​(ByteBuffer data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeActorResponse parseFrom​(byte[] data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeActorResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.InvokeActorResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.InvokeActorResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.InvokeActorResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.InvokeActorResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.InvokeActorResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeActorResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeActorResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeActorResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.InvokeActorResponseOrBuilder.html index ec6a5b210..0861ba910 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeActorResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeActorResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeActorResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeActorResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.InvokeActorResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.InvokeActorResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.InvokeActorResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      com.google.protobuf.ByteString
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData()
        bytes data = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getData

          -
          com.google.protobuf.ByteString getData()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getData

              +
              com.google.protobuf.ByteString getData()
              bytes data = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The data.
              -
        -
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.Builder.html index 70415dde8..5a46df3ce 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeBindingRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingRequest.Builder> -
    io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeBindingRequest.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.InvokeBindingRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeBindingRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeBindingRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.InvokeBindingRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.InvokeBindingRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.InvokeBindingRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.InvokeBindingRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.InvokeBindingRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + +
      +
    • +

      getName

      +
      public String getName()
        The name of the output binding to invoke.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getName in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      public com.google.protobuf.ByteString getNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setNameBytes

      +
      public DaprProtos.InvokeBindingRequest.Builder setNameBytes​(com.google.protobuf.ByteString value)
        The name of the output binding to invoke.
        
      string name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for name to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataCount

      +
      public int getMetadataCount()
      +
      Description copied from interface: DaprProtos.InvokeBindingRequestOrBuilder
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataCount in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      containsMetadata

      -
      public boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      public boolean containsMetadata​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      containsMetadata in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -public Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      public Map<String,​String> getMetadataMap()
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataMap in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      public String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      public String getMetadataOrDefault​(String key,
      +                                   String defaultValue)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrDefault in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      public String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      clearMetadata

      - -
      +
    + + + + + + + +
      +
    • +

      removeMetadata

      +
      public DaprProtos.InvokeBindingRequest.Builder removeMetadata​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMutableMetadata

      -
      @Deprecated -public Map<String,​String> getMutableMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      putMetadata

      +
      public DaprProtos.InvokeBindingRequest.Builder putMetadata​(String key,
      +                                                           String value)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      putAllMetadata

      -
      public DaprProtos.InvokeBindingRequest.Builder putAllMetadata(Map<String,​String> values)
      +
    + + + +
      +
    • +

      putAllMetadata

      +
      public DaprProtos.InvokeBindingRequest.Builder putAllMetadata​(Map<String,​String> values)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getOperation

      -
      public String getOperation()
      +
    + + + +
      +
    • +

      getOperation

      +
      public String getOperation()
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperation in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The operation.
      -
    • -
    • -
      -

      getOperationBytes

      -
      public com.google.protobuf.ByteString getOperationBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setOperationBytes

      +
      public DaprProtos.InvokeBindingRequest.Builder setOperationBytes​(com.google.protobuf.ByteString value)
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for operation to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.InvokeBindingRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.html index 809d00310..d2437a79e 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeBindingRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeBindingRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.InvokeBindingRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.InvokeBindingRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      OPERATION_FIELD_NUMBER

      +
      public static final int OPERATION_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + +
      +
    • +

      getName

      +
      public String getName()
        The name of the output binding to invoke.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getName in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      public com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      public com.google.protobuf.ByteString getNameBytes()
        The name of the output binding to invoke.
        
      string name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getNameBytes in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + +
      +
    • +

      getMetadataCount

      +
      public int getMetadataCount()
      +
      Description copied from interface: DaprProtos.InvokeBindingRequestOrBuilder
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataCount in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      containsMetadata

      -
      public boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      public boolean containsMetadata​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      containsMetadata in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -public Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      public Map<String,​String> getMetadataMap()
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataMap in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      public String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      public String getMetadataOrDefault​(String key,
      +                                   String defaultValue)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrDefault in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      public String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
    • -
    • -
      -

      getOperation

      -
      public String getOperation()
      +
    + + + +
      +
    • +

      getOperation

      +
      public String getOperation()
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperation in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The operation.
      -
    • -
    • -
      -

      getOperationBytes

      -
      public com.google.protobuf.ByteString getOperationBytes()
      +
    + + + +
      +
    • +

      getOperationBytes

      +
      public com.google.protobuf.ByteString getOperationBytes()
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperationBytes in interface DaprProtos.InvokeBindingRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for operation.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingRequest parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingRequest parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingRequest parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.InvokeBindingRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.InvokeBindingRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.InvokeBindingRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeBindingRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeBindingRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequestOrBuilder.html index b55516416..317a5d78e 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.InvokeBindingRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.InvokeBindingRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.InvokeBindingRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsMetadata​(String key)
        The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        The data which will be sent to output binding.
        - - - -
        -
        Deprecated.
        -
        -
        int
        - -
        +
        Map<String,​String>getMetadata() +
        Deprecated.
        +
        intgetMetadataCount()
        The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
        - - - -
        +
        Map<String,​String>getMetadataMap()
        The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
        - - -
        getMetadataOrDefault​(String key, - String defaultValue)
        -
        +
        StringgetMetadataOrDefault​(String key, + String defaultValue)
        The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
        - - - -
        +
        StringgetMetadataOrThrow​(String key)
        The metadata passing to output binding components - Common metadata property: - ttlInSeconds : the time to live in seconds for the message.
        - - - -
        +
        StringgetName()
        The name of the output binding to invoke.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        The name of the output binding to invoke.
        - - - -
        +
        StringgetOperation()
        The name of the operation type for the binding to invoke
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetOperationBytes()
        The name of the operation type for the binding to invoke
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getName

          -
          String getName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getName

              +
              String getName()
                The name of the output binding to invoke.
                
              string name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The name.
              -
        • -
        • -
          -

          getNameBytes

          -
          com.google.protobuf.ByteString getNameBytes()
          +
        + + + +
          +
        • +

          getNameBytes

          +
          com.google.protobuf.ByteString getNameBytes()
            The name of the output binding to invoke.
            
          string name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for name.
          -
      • -
      • -
        -

        getData

        -
        com.google.protobuf.ByteString getData()
        +
      + + + +
        +
      • +

        getData

        +
        com.google.protobuf.ByteString getData()
          The data which will be sent to output binding.
          
        bytes data = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The data.
        -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata passing to output binding components
      - 
        Common metadata property:
      - - ttlInSeconds : the time to live in seconds for the message. 
      - If set in the binding definition will cause all messages to 
      + - ttlInSeconds : the time to live in seconds for the message.
      + If set in the binding definition will cause all messages to
        have a default time to live. The message ttl overrides any value
        in the binding definition.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getOperation

      -
      String getOperation()
      +
    + + + +
      +
    • +

      getOperation

      +
      String getOperation()
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The operation.
      -
    • -
    • -
      -

      getOperationBytes

      -
      com.google.protobuf.ByteString getOperationBytes()
      +
    + + + +
      +
    • +

      getOperationBytes

      +
      com.google.protobuf.ByteString getOperationBytes()
        The name of the operation type for the binding to invoke
        
      string operation = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for operation.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.Builder.html index 0f494b370..75d701676 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeBindingResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingResponse.Builder> -
    io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeBindingResponse.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.InvokeBindingResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeBindingResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeBindingResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.InvokeBindingResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.InvokeBindingResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeBindingResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.InvokeBindingResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.InvokeBindingResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                   throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.InvokeBindingResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.html index 7cf4d3a41..f2b6b479c 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeBindingResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.InvokeBindingResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeBindingResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.InvokeBindingResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingResponse parseFrom​(ByteBuffer data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingResponse parseFrom​(ByteBuffer data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeBindingResponse parseFrom​(byte[] data)
      +                                                  throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeBindingResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.InvokeBindingResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.InvokeBindingResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.InvokeBindingResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeBindingResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeBindingResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponseOrBuilder.html index fe9f28dbc..c0b5be3a4 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeBindingResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeBindingResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeBindingResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeBindingResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.InvokeBindingResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.InvokeBindingResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.InvokeBindingResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods Deprecated Methods 
        Modifier and TypeMethodDescription
        booleancontainsMetadata​(String key)
        The metadata returned from an external system
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        The data which will be sent to output binding.
        - - - -
        -
        Deprecated.
        -
        -
        int
        - -
        +
        Map<String,​String>getMetadata() +
        Deprecated.
        +
        intgetMetadataCount()
        The metadata returned from an external system
        - - - -
        +
        Map<String,​String>getMetadataMap()
        The metadata returned from an external system
        - - -
        getMetadataOrDefault​(String key, - String defaultValue)
        -
        +
        StringgetMetadataOrDefault​(String key, + String defaultValue)
        The metadata returned from an external system
        - - - -
        +
        StringgetMetadataOrThrow​(String key)
        The metadata returned from an external system
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getData

          -
          com.google.protobuf.ByteString getData()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getData

              +
              com.google.protobuf.ByteString getData()
                The data which will be sent to output binding.
                
              bytes data = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The data.
              -
        • -
        • -
          -

          getMetadataCount

          -
          int getMetadataCount()
          +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
            The metadata returned from an external system
            
          map<string, string> metadata = 2;
          -
      • -
      • -
        -

        containsMetadata

        -
        boolean containsMetadata(String key)
        +
      + + + +
        +
      • +

        containsMetadata

        +
        boolean containsMetadata​(String key)
          The metadata returned from an external system
          
        map<string, string> metadata = 2;
        -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata returned from an external system
        
      map<string, string> metadata = 2;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata returned from an external system
        
      map<string, string> metadata = 2;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata returned from an external system
        
      map<string, string> metadata = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.Builder.html index 55b2adfbf..e5f5dde8f 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeServiceRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeServiceRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeServiceRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeServiceRequest.Builder> -
    io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeServiceRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeServiceRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.InvokeServiceRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.InvokeServiceRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.InvokeServiceRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.InvokeServiceRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.InvokeServiceRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.InvokeServiceRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + +
      +
    • +

      getId

      +
      public String getId()
        Required. Callee's app id.
        
      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getId in interface DaprProtos.InvokeServiceRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The id.
      -
    • -
    • -
      -

      getIdBytes

      -
      public com.google.protobuf.ByteString getIdBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setIdBytes

      +
      public DaprProtos.InvokeServiceRequest.Builder setIdBytes​(com.google.protobuf.ByteString value)
        Required. Callee's app id.
        
      string id = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for id to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasMessage

      -
      public boolean hasMessage()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.html b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.html index 623237a6e..ef02ee9d0 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeServiceRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeServiceRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.InvokeServiceRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.InvokeServiceRequest
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.InvokeServiceRequest

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.InvokeServiceRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + +
      +
    • +

      getId

      +
      public String getId()
        Required. Callee's app id.
        
      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getId in interface DaprProtos.InvokeServiceRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The id.
      -
    • -
    • -
      -

      getIdBytes

      -
      public com.google.protobuf.ByteString getIdBytes()
      +
    + + + +
      +
    • +

      getIdBytes

      +
      public com.google.protobuf.ByteString getIdBytes()
        Required. Callee's app id.
        
      string id = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getIdBytes in interface DaprProtos.InvokeServiceRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for id.
      -
    • -
    • -
      -

      hasMessage

      -
      public boolean hasMessage()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeServiceRequest parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeServiceRequest parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeServiceRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeServiceRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.InvokeServiceRequest parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.InvokeServiceRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.InvokeServiceRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.InvokeServiceRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.InvokeServiceRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.InvokeServiceRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.InvokeServiceRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequestOrBuilder.html index c2b3bc549..bde610cbf 100644 --- a/docs/io/dapr/v1/DaprProtos.InvokeServiceRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.InvokeServiceRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.InvokeServiceRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.InvokeServiceRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.InvokeServiceRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.InvokeServiceRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.InvokeServiceRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetId()
        Required.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetIdBytes()
        Required.
        - - - -
        +
        CommonProtos.InvokeRequestgetMessage()
        Required.
        - - - -
        +
        CommonProtos.InvokeRequestOrBuildergetMessageOrBuilder()
        Required.
        - -
        boolean
        - -
        +
        booleanhasMessage()
        Required.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getId

          -
          String getId()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getId

              +
              String getId()
                Required. Callee's app id.
                
              string id = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The id.
              -
        • -
        • -
          -

          getIdBytes

          -
          com.google.protobuf.ByteString getIdBytes()
          +
        + + + +
          +
        • +

          getIdBytes

          +
          com.google.protobuf.ByteString getIdBytes()
            Required. Callee's app id.
            
          string id = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for id.
          -
      • -
      • -
        -

        hasMessage

        -
        boolean hasMessage()
        +
      + + + +
        +
      • +

        hasMessage

        +
        boolean hasMessage()
          Required. message which will be delivered to callee.
          
        .dapr.proto.common.v1.InvokeRequest message = 3;
        -
        -
        Returns:
        +
        +
        Returns:
        Whether the message field is set.
        -
    • -
    • -
      -

      getMessage

      - +
    + + + + + + + +
      +
    • +

      getMessageOrBuilder

      +
      CommonProtos.InvokeRequestOrBuilder getMessageOrBuilder()
        Required. message which will be delivered to callee.
        
      .dapr.proto.common.v1.InvokeRequest message = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html index 5171f8083..f081ada12 100644 --- a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.PublishEventRequest.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.PublishEventRequest.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PublishEventRequest.Builder> -
    io.dapr.v1.DaprProtos.PublishEventRequest.Builder
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.PublishEventRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PublishEventRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PublishEventRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.PublishEventRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.PublishEventRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.PublishEventRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.PublishEventRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.PublishEventRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PublishEventRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.PublishEventRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.PublishEventRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.PublishEventRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getPubsubName

      -
      public String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        The name of the pubsub component
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setPubsubNameBytes

      +
      public DaprProtos.PublishEventRequest.Builder setPubsubNameBytes​(com.google.protobuf.ByteString value)
        The name of the pubsub component
        
      string pubsub_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for pubsubName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getTopic

      -
      public String getTopic()
      +
    + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        The pubsub topic
        
      string topic = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setTopicBytes

      +
      public DaprProtos.PublishEventRequest.Builder setTopicBytes​(com.google.protobuf.ByteString value)
        The pubsub topic
        
      string topic = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for topic to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      clearData

      +
      public DaprProtos.PublishEventRequest.Builder clearData()
        The data which will be published to topic.
        
      bytes data = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getDataContentType

      -
      public String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      public String getDataContentType()
        The content type for the data (optional).
        
      string data_content_type = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataContentType in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      public com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setDataContentTypeBytes

      +
      public DaprProtos.PublishEventRequest.Builder setDataContentTypeBytes​(com.google.protobuf.ByteString value)
        The content type for the data (optional).
        
      string data_content_type = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for dataContentType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.PublishEventRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.PublishEventRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PublishEventRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.html b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.html index 9f996c98a..6762213f5 100644 --- a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.html +++ b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.PublishEventRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.PublishEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.PublishEventRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.PublishEventRequest
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PublishEventRequest

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.PublishEventRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DATA_CONTENT_TYPE_FIELD_NUMBER

      +
      public static final int DATA_CONTENT_TYPE_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      METADATA_FIELD_NUMBER

      -
      public static final int METADATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      METADATA_FIELD_NUMBER

      +
      public static final int METADATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getPubsubName

      -
      public String getPubsubName()
      +
    + + + +
      +
    • +

      getPubsubName

      +
      public String getPubsubName()
        The name of the pubsub component
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubName in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The pubsubName.
      -
    • -
    • -
      -

      getPubsubNameBytes

      -
      public com.google.protobuf.ByteString getPubsubNameBytes()
      +
    + + + +
      +
    • +

      getPubsubNameBytes

      +
      public com.google.protobuf.ByteString getPubsubNameBytes()
        The name of the pubsub component
        
      string pubsub_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPubsubNameBytes in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for pubsubName.
      -
    • -
    • -
      -

      getTopic

      -
      public String getTopic()
      +
    + + + +
      +
    • +

      getTopic

      +
      public String getTopic()
        The pubsub topic
        
      string topic = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopic in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The topic.
      -
    • -
    • -
      -

      getTopicBytes

      -
      public com.google.protobuf.ByteString getTopicBytes()
      +
    + + + +
      +
    • +

      getTopicBytes

      +
      public com.google.protobuf.ByteString getTopicBytes()
        The pubsub topic
        
      string topic = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTopicBytes in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for topic.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
        The data which will be published to topic.
        
      bytes data = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getDataContentType

      -
      public String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      public String getDataContentType()
        The content type for the data (optional).
        
      string data_content_type = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getDataContentType in interface DaprProtos.PublishEventRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      public com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata passing to pub components
        metadata property:
      @@ -719,309 +1016,445 @@ 

      getMetadataOrThrow

      map<string, string> metadata = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.PublishEventRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.PublishEventRequest parseFrom​(ByteBuffer data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.PublishEventRequest parseFrom​(ByteBuffer data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.PublishEventRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.PublishEventRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.PublishEventRequest parseFrom​(byte[] data)
      +                                                throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.PublishEventRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.PublishEventRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.PublishEventRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.PublishEventRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.PublishEventRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.PublishEventRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.PublishEventRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.PublishEventRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.PublishEventRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PublishEventRequestOrBuilder.html index 3972792f6..0fc7fc0af 100644 --- a/docs/io/dapr/v1/DaprProtos.PublishEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.PublishEventRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.PublishEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.PublishEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.PublishEventRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PublishEventRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.PublishEventRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getPubsubName

          -
          String getPubsubName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getPubsubName

              +
              String getPubsubName()
                The name of the pubsub component
                
              string pubsub_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The pubsubName.
              -
        • -
        • -
          -

          getPubsubNameBytes

          -
          com.google.protobuf.ByteString getPubsubNameBytes()
          +
        + + + +
          +
        • +

          getPubsubNameBytes

          +
          com.google.protobuf.ByteString getPubsubNameBytes()
            The name of the pubsub component
            
          string pubsub_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for pubsubName.
          -
      • -
      • -
        -

        getTopic

        -
        String getTopic()
        +
      + + + +
        +
      • +

        getTopic

        +
        String getTopic()
          The pubsub topic
          
        string topic = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The topic.
        -
    • -
    • -
      -

      getTopicBytes

      -
      com.google.protobuf.ByteString getTopicBytes()
      +
    + + + +
      +
    • +

      getTopicBytes

      +
      com.google.protobuf.ByteString getTopicBytes()
        The pubsub topic
        
      string topic = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for topic.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
        The data which will be published to topic.
        
      bytes data = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getDataContentType

      -
      String getDataContentType()
      +
    + + + +
      +
    • +

      getDataContentType

      +
      String getDataContentType()
        The content type for the data (optional).
        
      string data_content_type = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The dataContentType.
      -
    • -
    • -
      -

      getDataContentTypeBytes

      -
      com.google.protobuf.ByteString getDataContentTypeBytes()
      +
    + + + +
      +
    • +

      getDataContentTypeBytes

      +
      com.google.protobuf.ByteString getDataContentTypeBytes()
        The content type for the data (optional).
        
      string data_content_type = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for dataContentType.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata passing to pub components
        metadata property:
      @@ -330,12 +444,15 @@ 

      getMetadataCount

      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata passing to pub components
        metadata property:
      @@ -343,21 +460,27 @@ 

      containsMetadata

      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata passing to pub components
        metadata property:
      @@ -365,13 +488,16 @@ 

      getMetadataMap

      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata passing to pub components
        metadata property:
      @@ -379,12 +505,15 @@ 

      getMetadataOrDefault

      map<string, string> metadata = 5;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata passing to pub components
        metadata property:
      @@ -392,20 +521,78 @@ 

      getMetadataOrThrow

      map<string, string> metadata = 5;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscription.Builder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscription.Builder.html new file mode 100644 index 000000000..4180c12eb --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscription.Builder.html @@ -0,0 +1,1445 @@ + + + + + +DaprProtos.PubsubSubscription.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscription.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscription.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscription.html new file mode 100644 index 000000000..76f9339d9 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscription.html @@ -0,0 +1,1419 @@ + + + + + +DaprProtos.PubsubSubscription (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscription

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.PubsubSubscription
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionOrBuilder.html new file mode 100644 index 000000000..ac578109c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionOrBuilder.html @@ -0,0 +1,556 @@ + + + + + +DaprProtos.PubsubSubscriptionOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PubsubSubscriptionOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getPubsubName

          +
          String getPubsubName()
          +
          string pubsub_name = 1;
          +
          +
          Returns:
          +
          The pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getPubsubNameBytes

          +
          com.google.protobuf.ByteString getPubsubNameBytes()
          +
          string pubsub_name = 1;
          +
          +
          Returns:
          +
          The bytes for pubsubName.
          +
          +
        • +
        + + + +
          +
        • +

          getTopic

          +
          String getTopic()
          +
          string topic = 2;
          +
          +
          Returns:
          +
          The topic.
          +
          +
        • +
        + + + +
          +
        • +

          getTopicBytes

          +
          com.google.protobuf.ByteString getTopicBytes()
          +
          string topic = 2;
          +
          +
          Returns:
          +
          The bytes for topic.
          +
          +
        • +
        + + + +
          +
        • +

          getMetadataCount

          +
          int getMetadataCount()
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          containsMetadata

          +
          boolean containsMetadata​(String key)
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + + + + + +
          +
        • +

          getMetadataMap

          +
          Map<String,​String> getMetadataMap()
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrDefault

          +
          String getMetadataOrDefault​(String key,
          +                            String defaultValue)
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          getMetadataOrThrow

          +
          String getMetadataOrThrow​(String key)
          +
          map<string, string> metadata = 3;
          +
        • +
        + + + +
          +
        • +

          hasRules

          +
          boolean hasRules()
          +
          .dapr.proto.runtime.v1.PubsubSubscriptionRules rules = 4;
          +
          +
          Returns:
          +
          Whether the rules field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getDeadLetterTopic

          +
          String getDeadLetterTopic()
          +
          string dead_letter_topic = 5;
          +
          +
          Returns:
          +
          The deadLetterTopic.
          +
          +
        • +
        + + + +
          +
        • +

          getDeadLetterTopicBytes

          +
          com.google.protobuf.ByteString getDeadLetterTopicBytes()
          +
          string dead_letter_topic = 5;
          +
          +
          Returns:
          +
          The bytes for deadLetterTopic.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.Builder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.Builder.html new file mode 100644 index 000000000..89239394e --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.Builder.html @@ -0,0 +1,927 @@ + + + + + +DaprProtos.PubsubSubscriptionRule.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscriptionRule.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.html new file mode 100644 index 000000000..a67580d0d --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRule.html @@ -0,0 +1,1103 @@ + + + + + +DaprProtos.PubsubSubscriptionRule (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscriptionRule

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.PubsubSubscriptionRule
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(ByteBuffer data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(ByteBuffer data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(com.google.protobuf.ByteString data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(com.google.protobuf.ByteString data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(byte[] data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRule parseFrom​(byte[] data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.PubsubSubscriptionRule.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.PubsubSubscriptionRule.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.PubsubSubscriptionRule.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.PubsubSubscriptionRule> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PubsubSubscriptionRule getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRuleOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRuleOrBuilder.html new file mode 100644 index 000000000..34ef01c3e --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRuleOrBuilder.html @@ -0,0 +1,349 @@ + + + + + +DaprProtos.PubsubSubscriptionRuleOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PubsubSubscriptionRuleOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetMatch() +
        string match = 1;
        +
        com.google.protobuf.ByteStringgetMatchBytes() +
        string match = 1;
        +
        StringgetPath() +
        string path = 2;
        +
        com.google.protobuf.ByteStringgetPathBytes() +
        string path = 2;
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getMatch

          +
          String getMatch()
          +
          string match = 1;
          +
          +
          Returns:
          +
          The match.
          +
          +
        • +
        + + + +
          +
        • +

          getMatchBytes

          +
          com.google.protobuf.ByteString getMatchBytes()
          +
          string match = 1;
          +
          +
          Returns:
          +
          The bytes for match.
          +
          +
        • +
        + + + +
          +
        • +

          getPath

          +
          String getPath()
          +
          string path = 2;
          +
          +
          Returns:
          +
          The path.
          +
          +
        • +
        + + + +
          +
        • +

          getPathBytes

          +
          com.google.protobuf.ByteString getPathBytes()
          +
          string path = 2;
          +
          +
          Returns:
          +
          The bytes for path.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.Builder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.Builder.html new file mode 100644 index 000000000..875ad38c3 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.Builder.html @@ -0,0 +1,1035 @@ + + + + + +DaprProtos.PubsubSubscriptionRules.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscriptionRules.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.html new file mode 100644 index 000000000..c72c28185 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRules.html @@ -0,0 +1,1098 @@ + + + + + +DaprProtos.PubsubSubscriptionRules (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PubsubSubscriptionRules

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.PubsubSubscriptionRules
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(ByteBuffer data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(ByteBuffer data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(com.google.protobuf.ByteString data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(com.google.protobuf.ByteString data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(byte[] data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PubsubSubscriptionRules parseFrom​(byte[] data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.PubsubSubscriptionRules.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.PubsubSubscriptionRules.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.PubsubSubscriptionRules.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.PubsubSubscriptionRules> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PubsubSubscriptionRules getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRulesOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRulesOrBuilder.html new file mode 100644 index 000000000..32460066a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PubsubSubscriptionRulesOrBuilder.html @@ -0,0 +1,350 @@ + + + + + +DaprProtos.PubsubSubscriptionRulesOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PubsubSubscriptionRulesOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html b/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html index 5d368ff08..5026138e5 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateItem.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder> -
    io.dapr.v1.DaprProtos.QueryStateItem.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateItem.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.QueryStateItem build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.QueryStateItem build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.QueryStateItem buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.QueryStateItem buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.QueryStateItem.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.QueryStateItem.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.QueryStateItem.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                          int index,
      +                                                          Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.QueryStateItem.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.QueryStateItem.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.QueryStateItem.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.QueryStateItem.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The object key.
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.QueryStateItem.Builder setKeyBytes​(com.google.protobuf.ByteString value)
        The object key.
        
      string key = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      clearData

      +
      public DaprProtos.QueryStateItem.Builder clearData()
        The object value.
        
      bytes data = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getEtag

      -
      public String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      public com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtagBytes in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      setEtag

      -
      public DaprProtos.QueryStateItem.Builder setEtag(String value)
      +
    + + + +
      +
    • +

      setEtag

      +
      public DaprProtos.QueryStateItem.Builder setEtag​(String value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearEtag

      - +
    + + + +
      +
    • +

      clearEtag

      +
      public DaprProtos.QueryStateItem.Builder clearEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setEtagBytes

      -
      public DaprProtos.QueryStateItem.Builder setEtagBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setEtagBytes

      +
      public DaprProtos.QueryStateItem.Builder setEtagBytes​(com.google.protobuf.ByteString value)
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for etag to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getError

      -
      public String getError()
      +
    + + + +
      +
    • +

      getError

      +
      public String getError()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getError in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      public com.google.protobuf.ByteString getErrorBytes()
      +
    + + + + + + + + + + + +
      +
    • +

      clearError

      +
      public DaprProtos.QueryStateItem.Builder clearError()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setErrorBytes

      -
      public DaprProtos.QueryStateItem.Builder setErrorBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setErrorBytes

      +
      public DaprProtos.QueryStateItem.Builder setErrorBytes​(com.google.protobuf.ByteString value)
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for error to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.QueryStateItem.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.QueryStateItem.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.QueryStateItem.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.QueryStateItem.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateItem.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateItem.html b/docs/io/dapr/v1/DaprProtos.QueryStateItem.html index 71920f08f..96b40c84d 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateItem.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateItem.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateItem (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateItem

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.QueryStateItem
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateItem

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.QueryStateItem
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class DaprProtos.QueryStateItem.Builder
        Protobuf type dapr.proto.runtime.v1.QueryStateItem
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        static int
        - -
         
        -
        static int
        - -
         
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intDATA_FIELD_NUMBER 
        static intERROR_FIELD_NUMBER 
        static intETAG_FIELD_NUMBER 
        static intKEY_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object obj)
      -
       
      -
      com.google.protobuf.ByteString
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          KEY_FIELD_NUMBER

          -
          public static final int KEY_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        • -
        • -
          -

          DATA_FIELD_NUMBER

          -
          public static final int DATA_FIELD_NUMBER
          -
          -
          See Also:
          +
        + + + +
      • -
      • -
        -

        ETAG_FIELD_NUMBER

        -
        public static final int ETAG_FIELD_NUMBER
        -
        -
        See Also:
        +
      + + + +
    • -
    • -
      -

      ERROR_FIELD_NUMBER

      -
      public static final int ERROR_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      ERROR_FIELD_NUMBER

      +
      public static final int ERROR_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
        The object key.
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      public com.google.protobuf.ByteString getKeyBytes()
        The object key.
        
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeyBytes in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      public com.google.protobuf.ByteString getData()
        The object value.
        
      bytes data = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getData in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getEtag

      -
      public String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      public String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtag in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      public com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      public com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getEtagBytes in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      getError

      -
      public String getError()
      +
    + + + +
      +
    • +

      getError

      +
      public String getError()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getError in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      public com.google.protobuf.ByteString getErrorBytes()
      +
    + + + +
      +
    • +

      getErrorBytes

      +
      public com.google.protobuf.ByteString getErrorBytes()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getErrorBytes in interface DaprProtos.QueryStateItemOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for error.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateItem parseFrom​(ByteBuffer data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateItem parseFrom​(ByteBuffer data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateItem parseFrom​(com.google.protobuf.ByteString data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateItem parseFrom​(com.google.protobuf.ByteString data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateItem parseFrom​(byte[] data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateItem parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.QueryStateItem.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.QueryStateItem.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.QueryStateItem.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.QueryStateItem.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.QueryStateItem.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.QueryStateItem getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.QueryStateItem> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.QueryStateItem getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateItem getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateItemOrBuilder.html b/docs/io/dapr/v1/DaprProtos.QueryStateItemOrBuilder.html index 279917143..10d6698fd 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateItemOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateItemOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.QueryStateItemOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.QueryStateItemOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.QueryStateItem, DaprProtos.QueryStateItem.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.QueryStateItemOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.QueryStateItemOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      com.google.protobuf.ByteString
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetData()
        The object value.
        - - - -
        +
        StringgetError()
        The error message indicating an error in processing of the query result.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetErrorBytes()
        The error message indicating an error in processing of the query result.
        - - - -
        +
        StringgetEtag()
        The entity tag which represents the specific version of data.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetEtagBytes()
        The entity tag which represents the specific version of data.
        - - - -
        +
        StringgetKey()
        The object key.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetKeyBytes()
        The object key.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getKey

          -
          String getKey()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getKey

              +
              String getKey()
                The object key.
                
              string key = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The key.
              -
        • -
        • -
          -

          getKeyBytes

          -
          com.google.protobuf.ByteString getKeyBytes()
          +
        + + + +
          +
        • +

          getKeyBytes

          +
          com.google.protobuf.ByteString getKeyBytes()
            The object key.
            
          string key = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for key.
          -
      • -
      • -
        -

        getData

        -
        com.google.protobuf.ByteString getData()
        +
      + + + +
        +
      • +

        getData

        +
        com.google.protobuf.ByteString getData()
          The object value.
          
        bytes data = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The data.
        -
    • -
    • -
      -

      getEtag

      -
      String getEtag()
      +
    + + + +
      +
    • +

      getEtag

      +
      String getEtag()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The etag.
      -
    • -
    • -
      -

      getEtagBytes

      -
      com.google.protobuf.ByteString getEtagBytes()
      +
    + + + +
      +
    • +

      getEtagBytes

      +
      com.google.protobuf.ByteString getEtagBytes()
        The entity tag which represents the specific version of data.
        ETag format is defined by the corresponding data store.
        
      string etag = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for etag.
      -
    • -
    • -
      -

      getError

      -
      String getError()
      +
    + + + +
      +
    • +

      getError

      +
      String getError()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The error.
      -
    • -
    • -
      -

      getErrorBytes

      -
      com.google.protobuf.ByteString getErrorBytes()
      +
    + + + +
      +
    • +

      getErrorBytes

      +
      com.google.protobuf.ByteString getErrorBytes()
        The error message indicating an error in processing of the query result.
        
      string error = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for error.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.QueryStateRequest.Builder.html index a2cac2379..fcb9c7bca 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateRequest.Builder> -
    io.dapr.v1.DaprProtos.QueryStateRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.QueryStateRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.QueryStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.QueryStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.QueryStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.QueryStateRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.QueryStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.QueryStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.QueryStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.QueryStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.QueryStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getQuery

      -
      public String getQuery()
      +
    + + + +
      +
    • +

      getQuery

      +
      public String getQuery()
        The query in JSON format.
        
      string query = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuery in interface DaprProtos.QueryStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The query.
      -
    • -
    • -
      -

      getQueryBytes

      -
      public com.google.protobuf.ByteString getQueryBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setQueryBytes

      +
      public DaprProtos.QueryStateRequest.Builder setQueryBytes​(com.google.protobuf.ByteString value)
        The query in JSON format.
        
      string query = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for query to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.QueryStateRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.QueryStateRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateRequest.html b/docs/io/dapr/v1/DaprProtos.QueryStateRequest.html index 376a6ed15..7f67f0c8a 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.QueryStateRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.QueryStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.QueryStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.QueryStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getQuery

      -
      public String getQuery()
      +
    + + + +
      +
    • +

      getQuery

      +
      public String getQuery()
        The query in JSON format.
        
      string query = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getQuery in interface DaprProtos.QueryStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The query.
      -
    • -
    • -
      -

      getQueryBytes

      -
      public com.google.protobuf.ByteString getQueryBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getMetadataOrThrow

      +
      public String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMetadataOrThrow in interface DaprProtos.QueryStateRequestOrBuilder
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateRequest parseFrom​(ByteBuffer data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateRequest parseFrom​(ByteBuffer data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateRequest parseFrom​(byte[] data)
      +                                              throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.QueryStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.QueryStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.QueryStateRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.QueryStateRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.QueryStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.QueryStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.QueryStateRequestOrBuilder.html index dae5a004e..d8e56342b 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.QueryStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.QueryStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.QueryStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of state store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of state store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getQuery

        -
        String getQuery()
        +
      + + + +
        +
      • +

        getQuery

        +
        String getQuery()
          The query in JSON format.
          
        string query = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The query.
        -
    • -
    • -
      -

      getQueryBytes

      -
      com.google.protobuf.ByteString getQueryBytes()
      +
    + + + +
      +
    • +

      getQueryBytes

      +
      com.google.protobuf.ByteString getQueryBytes()
        The query in JSON format.
        
      string query = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for query.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to state store components.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.QueryStateResponse.Builder.html index 82259d92c..b012c9b7a 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateResponse.Builder> -
    io.dapr.v1.DaprProtos.QueryStateResponse.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateResponse.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.QueryStateResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.QueryStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.QueryStateResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.QueryStateResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.QueryStateResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.QueryStateResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getResultsBuilderList

      +
      public List<DaprProtos.QueryStateItem.Builder> getResultsBuilderList()
        An array of query results.
        
      repeated .dapr.proto.runtime.v1.QueryStateItem results = 1;
      -
    • -
    • -
      -

      getToken

      -
      public String getToken()
      +
    + + + +
      +
    • +

      getToken

      +
      public String getToken()
        Pagination token.
        
      string token = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getToken in interface DaprProtos.QueryStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The token.
      -
    • -
    • -
      -

      getTokenBytes

      -
      public com.google.protobuf.ByteString getTokenBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setTokenBytes

      +
      public DaprProtos.QueryStateResponse.Builder setTokenBytes​(com.google.protobuf.ByteString value)
        Pagination token.
        
      string token = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for token to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.QueryStateResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.QueryStateResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.QueryStateResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateResponse.html b/docs/io/dapr/v1/DaprProtos.QueryStateResponse.html index 09d8f64c6..5e14eb158 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateResponse.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.QueryStateResponse

    +
    Package io.dapr.v1
    +

    Class DaprProtos.QueryStateResponse

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.QueryStateResponse
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.QueryStateResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getResultsList

      -
      public List<DaprProtos.QueryStateItem> getResultsList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getToken

      +
      public String getToken()
        Pagination token.
        
      string token = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getToken in interface DaprProtos.QueryStateResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The token.
      -
    • -
    • -
      -

      getTokenBytes

      -
      public com.google.protobuf.ByteString getTokenBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateResponse parseFrom​(ByteBuffer data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateResponse parseFrom​(ByteBuffer data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.QueryStateResponse parseFrom​(byte[] data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.QueryStateResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.QueryStateResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.QueryStateResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.QueryStateResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.QueryStateResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.QueryStateResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.QueryStateResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.QueryStateResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.QueryStateResponseOrBuilder.html index 78c779081..0e9074ea3 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.QueryStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.QueryStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.QueryStateResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.QueryStateResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.QueryStateResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + +
      +
    • +

      getResultsOrBuilder

      +
      DaprProtos.QueryStateItemOrBuilder getResultsOrBuilder​(int index)
        An array of query results.
        
      repeated .dapr.proto.runtime.v1.QueryStateItem results = 1;
      -
    • -
    • -
      -

      getToken

      -
      String getToken()
      +
    + + + +
      +
    • +

      getToken

      +
      String getToken()
        Pagination token.
        
      string token = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The token.
      -
    • -
    • -
      -

      getTokenBytes

      -
      com.google.protobuf.ByteString getTokenBytes()
      +
    + + + +
      +
    • +

      getTokenBytes

      +
      com.google.protobuf.ByteString getTokenBytes()
        Pagination token.
        
      string token = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for token.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to app.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html index 41884902e..088329c5c 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisterActorReminderRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisterActorReminderRequest.Builder> -
    io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisterActorReminderRequest.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • + +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisterActorReminderRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisterActorReminderRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.RegisterActorReminderRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.RegisterActorReminderRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.RegisterActorReminderRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setNameBytes

      +
      public DaprProtos.RegisterActorReminderRequest.Builder setNameBytes​(com.google.protobuf.ByteString value)
      string name = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for name to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getDueTime

      -
      public String getDueTime()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setDueTimeBytes

      +
      public DaprProtos.RegisterActorReminderRequest.Builder setDueTimeBytes​(com.google.protobuf.ByteString value)
      string due_time = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for dueTime to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getPeriod

      -
      public String getPeriod()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setPeriodBytes

      +
      public DaprProtos.RegisterActorReminderRequest.Builder setPeriodBytes​(com.google.protobuf.ByteString value)
      string period = 5;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for period to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.html b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.html index 117a0b595..7deab9646 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisterActorReminderRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.RegisterActorReminderRequest
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisterActorReminderRequest

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.RegisterActorReminderRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DUE_TIME_FIELD_NUMBER

      +
      public static final int DUE_TIME_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      PERIOD_FIELD_NUMBER

      -
      public static final int PERIOD_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      PERIOD_FIELD_NUMBER

      +
      public static final int PERIOD_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      DATA_FIELD_NUMBER

      -
      public static final int DATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      DATA_FIELD_NUMBER

      +
      public static final int DATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      TTL_FIELD_NUMBER

      -
      public static final int TTL_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getPeriodBytes

      +
      public com.google.protobuf.ByteString getPeriodBytes()
      string period = 5;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getPeriodBytes in interface DaprProtos.RegisterActorReminderRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for period.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      getTtlBytes

      +
      public com.google.protobuf.ByteString getTtlBytes()
      string ttl = 7;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTtlBytes in interface DaprProtos.RegisterActorReminderRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for ttl.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorReminderRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorReminderRequest parseFrom​(ByteBuffer data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorReminderRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorReminderRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorReminderRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorReminderRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorReminderRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorReminderRequest parseFrom​(byte[] data)
      +                                                         throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorReminderRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.RegisterActorReminderRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.RegisterActorReminderRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisterActorReminderRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequestOrBuilder.html index f196a940c..5867d9e37 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.RegisterActorReminderRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.RegisterActorReminderRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.RegisterActorReminderRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        bytes data = 6;
        - - - -
        +
        StringgetDueTime()
        string due_time = 4;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetDueTimeBytes()
        string due_time = 4;
        - - - -
        +
        StringgetName()
        string name = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        string name = 3;
        - - - -
        +
        StringgetPeriod()
        string period = 5;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetPeriodBytes()
        string period = 5;
        - - - -
        +
        StringgetTtl()
        string ttl = 7;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTtlBytes()
        string ttl = 7;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getName

      -
      String getName()
      +
    + + + +
      +
    • +

      getName

      +
      String getName()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      getDueTime

      -
      String getDueTime()
      +
    + + + +
      +
    • +

      getDueTime

      +
      String getDueTime()
      string due_time = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The dueTime.
      -
    • -
    • -
      -

      getDueTimeBytes

      -
      com.google.protobuf.ByteString getDueTimeBytes()
      +
    + + + +
      +
    • +

      getDueTimeBytes

      +
      com.google.protobuf.ByteString getDueTimeBytes()
      string due_time = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for dueTime.
      -
    • -
    • -
      -

      getPeriod

      -
      String getPeriod()
      +
    + + + +
      +
    • +

      getPeriod

      +
      String getPeriod()
      string period = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The period.
      -
    • -
    • -
      -

      getPeriodBytes

      -
      com.google.protobuf.ByteString getPeriodBytes()
      +
    + + + +
      +
    • +

      getPeriodBytes

      +
      com.google.protobuf.ByteString getPeriodBytes()
      string period = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for period.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
      bytes data = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getTtl

      -
      String getTtl()
      +
    + + + +
      +
    • +

      getTtl

      +
      String getTtl()
      string ttl = 7;
      -
      -
      Returns:
      +
      +
      Returns:
      The ttl.
      -
    • -
    • -
      -

      getTtlBytes

      -
      com.google.protobuf.ByteString getTtlBytes()
      +
    + + + +
      +
    • +

      getTtlBytes

      +
      com.google.protobuf.ByteString getTtlBytes()
      string ttl = 7;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for ttl.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.Builder.html index 1692c5544..99668b2bf 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorTimerRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorTimerRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisterActorTimerRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisterActorTimerRequest.Builder> -
    io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisterActorTimerRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisterActorTimerRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisterActorTimerRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.RegisterActorTimerRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setNameBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setNameBytes​(com.google.protobuf.ByteString value)
      string name = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for name to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getDueTime

      -
      public String getDueTime()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setDueTimeBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setDueTimeBytes​(com.google.protobuf.ByteString value)
      string due_time = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for dueTime to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getPeriod

      -
      public String getPeriod()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setPeriodBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setPeriodBytes​(com.google.protobuf.ByteString value)
      string period = 5;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for period to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getCallback

      -
      public String getCallback()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setCallbackBytes

      +
      public DaprProtos.RegisterActorTimerRequest.Builder setCallbackBytes​(com.google.protobuf.ByteString value)
      string callback = 6;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for callback to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.html b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.html index 340697956..c6b79a043 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorTimerRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorTimerRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisterActorTimerRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.RegisterActorTimerRequest
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisterActorTimerRequest

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.RegisterActorTimerRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      DUE_TIME_FIELD_NUMBER

      +
      public static final int DUE_TIME_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      PERIOD_FIELD_NUMBER

      -
      public static final int PERIOD_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      PERIOD_FIELD_NUMBER

      +
      public static final int PERIOD_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      CALLBACK_FIELD_NUMBER

      -
      public static final int CALLBACK_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      CALLBACK_FIELD_NUMBER

      +
      public static final int CALLBACK_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      DATA_FIELD_NUMBER

      -
      public static final int DATA_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + +
      +
    • +

      DATA_FIELD_NUMBER

      +
      public static final int DATA_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    • -
    • -
      -

      TTL_FIELD_NUMBER

      -
      public static final int TTL_FIELD_NUMBER
      -
      -
      See Also:
      +
    + + + + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getCallbackBytes

      +
      public com.google.protobuf.ByteString getCallbackBytes()
      string callback = 6;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCallbackBytes in interface DaprProtos.RegisterActorTimerRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for callback.
      -
    • -
    • -
      -

      getData

      -
      public com.google.protobuf.ByteString getData()
      +
    + + + + + + + + + + + +
      +
    • +

      getTtlBytes

      +
      public com.google.protobuf.ByteString getTtlBytes()
      string ttl = 8;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getTtlBytes in interface DaprProtos.RegisterActorTimerRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for ttl.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorTimerRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorTimerRequest parseFrom​(ByteBuffer data,
      +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                      throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorTimerRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorTimerRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                      throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorTimerRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorTimerRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                      throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorTimerRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisterActorTimerRequest parseFrom​(byte[] data)
      +                                                      throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisterActorTimerRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.RegisterActorTimerRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.RegisterActorTimerRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisterActorTimerRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequestOrBuilder.html index f99de17fc..226cd473d 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorTimerRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.RegisterActorTimerRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.RegisterActorTimerRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.RegisterActorTimerRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - - - -
        +
        StringgetCallback()
        string callback = 6;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetCallbackBytes()
        string callback = 6;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetData()
        bytes data = 7;
        - - - -
        +
        StringgetDueTime()
        string due_time = 4;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetDueTimeBytes()
        string due_time = 4;
        - - - -
        +
        StringgetName()
        string name = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        string name = 3;
        - - - -
        +
        StringgetPeriod()
        string period = 5;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetPeriodBytes()
        string period = 5;
        - - - -
        +
        StringgetTtl()
        string ttl = 8;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTtlBytes()
        string ttl = 8;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getName

      -
      String getName()
      +
    + + + +
      +
    • +

      getName

      +
      String getName()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      getDueTime

      -
      String getDueTime()
      +
    + + + +
      +
    • +

      getDueTime

      +
      String getDueTime()
      string due_time = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The dueTime.
      -
    • -
    • -
      -

      getDueTimeBytes

      -
      com.google.protobuf.ByteString getDueTimeBytes()
      +
    + + + +
      +
    • +

      getDueTimeBytes

      +
      com.google.protobuf.ByteString getDueTimeBytes()
      string due_time = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for dueTime.
      -
    • -
    • -
      -

      getPeriod

      -
      String getPeriod()
      +
    + + + +
      +
    • +

      getPeriod

      +
      String getPeriod()
      string period = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The period.
      -
    • -
    • -
      -

      getPeriodBytes

      -
      com.google.protobuf.ByteString getPeriodBytes()
      +
    + + + +
      +
    • +

      getPeriodBytes

      +
      com.google.protobuf.ByteString getPeriodBytes()
      string period = 5;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for period.
      -
    • -
    • -
      -

      getCallback

      -
      String getCallback()
      +
    + + + +
      +
    • +

      getCallback

      +
      String getCallback()
      string callback = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The callback.
      -
    • -
    • -
      -

      getCallbackBytes

      -
      com.google.protobuf.ByteString getCallbackBytes()
      +
    + + + +
      +
    • +

      getCallbackBytes

      +
      com.google.protobuf.ByteString getCallbackBytes()
      string callback = 6;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for callback.
      -
    • -
    • -
      -

      getData

      -
      com.google.protobuf.ByteString getData()
      +
    + + + +
      +
    • +

      getData

      +
      com.google.protobuf.ByteString getData()
      bytes data = 7;
      -
      -
      Returns:
      +
      +
      Returns:
      The data.
      -
    • -
    • -
      -

      getTtl

      -
      String getTtl()
      +
    + + + +
      +
    • +

      getTtl

      +
      String getTtl()
      string ttl = 8;
      -
      -
      Returns:
      +
      +
      Returns:
      The ttl.
      -
    • -
    • -
      -

      getTtlBytes

      -
      com.google.protobuf.ByteString getTtlBytes()
      +
    + + + +
      +
    • +

      getTtlBytes

      +
      com.google.protobuf.ByteString getTtlBytes()
      string ttl = 8;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for ttl.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisteredComponents.Builder.html b/docs/io/dapr/v1/DaprProtos.RegisteredComponents.Builder.html index 9f22991b9..4ec93b159 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisteredComponents.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisteredComponents.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisteredComponents.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisteredComponents.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisteredComponents.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisteredComponents.Builder> -
    io.dapr.v1.DaprProtos.RegisteredComponents.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisteredComponents.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisteredComponents getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.RegisteredComponents build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.RegisteredComponents buildPartial()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RegisteredComponents.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.RegisteredComponents.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.RegisteredComponents.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                  throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.RegisteredComponents.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setNameBytes

      +
      public DaprProtos.RegisteredComponents.Builder setNameBytes​(com.google.protobuf.ByteString value)
      string name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for name to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getType

      -
      public String getType()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setTypeBytes

      +
      public DaprProtos.RegisteredComponents.Builder setTypeBytes​(com.google.protobuf.ByteString value)
      string type = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for type to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getVersion

      -
      public String getVersion()
      +
    + + + +
      +
    • +

      getVersion

      +
      public String getVersion()
      string version = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersion in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Returns:
      +
      Returns:
      The version.
      -
    • -
    • -
      -

      getVersionBytes

      -
      public com.google.protobuf.ByteString getVersionBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setVersionBytes

      +
      public DaprProtos.RegisteredComponents.Builder setVersionBytes​(com.google.protobuf.ByteString value)
      string version = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for version to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getCapabilitiesList

      -
      public com.google.protobuf.ProtocolStringList getCapabilitiesList()
      +
    + + + +
      +
    • +

      getCapabilitiesList

      +
      public com.google.protobuf.ProtocolStringList getCapabilitiesList()
      repeated string capabilities = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCapabilitiesList in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the capabilities.
      -
    • -
    • -
      -

      getCapabilitiesCount

      -
      public int getCapabilitiesCount()
      +
    + + + + + + + +
      +
    • +

      getCapabilities

      +
      public String getCapabilities​(int index)
      repeated string capabilities = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCapabilities in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The capabilities at the given index.
      -
    • -
    • -
      -

      getCapabilitiesBytes

      -
      public com.google.protobuf.ByteString getCapabilitiesBytes(int index)
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      addCapabilitiesBytes

      +
      public DaprProtos.RegisteredComponents.Builder addCapabilitiesBytes​(com.google.protobuf.ByteString value)
      repeated string capabilities = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes of the capabilities to add.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.RegisteredComponents.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisteredComponents.html b/docs/io/dapr/v1/DaprProtos.RegisteredComponents.html index b8903d23c..e364df6ce 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisteredComponents.html +++ b/docs/io/dapr/v1/DaprProtos.RegisteredComponents.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisteredComponents (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisteredComponents (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RegisteredComponents

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.RegisteredComponents
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RegisteredComponents

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.RegisteredComponents
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      CAPABILITIES_FIELD_NUMBER

      +
      public static final int CAPABILITIES_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getVersion

      +
      public String getVersion()
      string version = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersion in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Returns:
      +
      Returns:
      The version.
      -
    • -
    • -
      -

      getVersionBytes

      -
      public com.google.protobuf.ByteString getVersionBytes()
      +
    + + + +
      +
    • +

      getVersionBytes

      +
      public com.google.protobuf.ByteString getVersionBytes()
      string version = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getVersionBytes in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for version.
      -
    • -
    • -
      -

      getCapabilitiesList

      -
      public com.google.protobuf.ProtocolStringList getCapabilitiesList()
      +
    + + + +
      +
    • +

      getCapabilitiesList

      +
      public com.google.protobuf.ProtocolStringList getCapabilitiesList()
      repeated string capabilities = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCapabilitiesList in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the capabilities.
      -
    • -
    • -
      -

      getCapabilitiesCount

      -
      public int getCapabilitiesCount()
      +
    + + + + + + + +
      +
    • +

      getCapabilities

      +
      public String getCapabilities​(int index)
      repeated string capabilities = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCapabilities in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The capabilities at the given index.
      -
    • -
    • -
      -

      getCapabilitiesBytes

      -
      public com.google.protobuf.ByteString getCapabilitiesBytes(int index)
      +
    + + + +
      +
    • +

      getCapabilitiesBytes

      +
      public com.google.protobuf.ByteString getCapabilitiesBytes​(int index)
      repeated string capabilities = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getCapabilitiesBytes in interface DaprProtos.RegisteredComponentsOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the capabilities at the given index.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisteredComponents parseFrom​(ByteBuffer data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisteredComponents parseFrom​(ByteBuffer data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisteredComponents parseFrom​(com.google.protobuf.ByteString data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisteredComponents parseFrom​(com.google.protobuf.ByteString data,
      +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RegisteredComponents parseFrom​(byte[] data)
      +                                                 throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RegisteredComponents parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.RegisteredComponents.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.RegisteredComponents.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.RegisteredComponents> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.RegisteredComponents getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RegisteredComponents getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RegisteredComponentsOrBuilder.html b/docs/io/dapr/v1/DaprProtos.RegisteredComponentsOrBuilder.html index 6fb7ba910..2ba8b78d1 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisteredComponentsOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisteredComponentsOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.RegisteredComponentsOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RegisteredComponentsOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.RegisteredComponentsOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.RegisteredComponentsOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.RegisteredComponentsOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - -
      getCapabilities​(int index)
      -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetCapabilities​(int index)
        repeated string capabilities = 4;
        - -
        com.google.protobuf.ByteString
        -
        getCapabilitiesBytes​(int index)
        -
        +
        com.google.protobuf.ByteStringgetCapabilitiesBytes​(int index)
        repeated string capabilities = 4;
        - -
        int
        - -
        +
        intgetCapabilitiesCount()
        repeated string capabilities = 4;
        - - - -
        +
        List<String>getCapabilitiesList()
        repeated string capabilities = 4;
        - - - -
        +
        StringgetName()
        string name = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        string name = 1;
        - - - -
        +
        StringgetType()
        string type = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetTypeBytes()
        string type = 2;
        - - - -
        +
        StringgetVersion()
        string version = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetVersionBytes()
        string version = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getName

          -
          String getName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getName

              +
              String getName()
              string name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The name.
              -
        • -
        • -
          -

          getNameBytes

          -
          com.google.protobuf.ByteString getNameBytes()
          +
        + + + +
          +
        • +

          getNameBytes

          +
          com.google.protobuf.ByteString getNameBytes()
          string name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for name.
          -
      • -
      • -
        -

        getType

        -
        String getType()
        +
      + + + +
        +
      • +

        getType

        +
        String getType()
        string type = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The type.
        -
    • -
    • -
      -

      getTypeBytes

      -
      com.google.protobuf.ByteString getTypeBytes()
      +
    + + + +
      +
    • +

      getTypeBytes

      +
      com.google.protobuf.ByteString getTypeBytes()
      string type = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for type.
      -
    • -
    • -
      -

      getVersion

      -
      String getVersion()
      +
    + + + +
      +
    • +

      getVersion

      +
      String getVersion()
      string version = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The version.
      -
    • -
    • -
      -

      getVersionBytes

      -
      com.google.protobuf.ByteString getVersionBytes()
      +
    + + + +
      +
    • +

      getVersionBytes

      +
      com.google.protobuf.ByteString getVersionBytes()
      string version = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for version.
      -
    • -
    • -
      -

      getCapabilitiesList

      -
      List<String> getCapabilitiesList()
      +
    + + + +
      +
    • +

      getCapabilitiesList

      +
      List<String> getCapabilitiesList()
      repeated string capabilities = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      A list containing the capabilities.
      -
    • -
    • -
      -

      getCapabilitiesCount

      -
      int getCapabilitiesCount()
      +
    + + + +
      +
    • +

      getCapabilitiesCount

      +
      int getCapabilitiesCount()
      repeated string capabilities = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The count of capabilities.
      -
    • -
    • -
      -

      getCapabilities

      -
      String getCapabilities(int index)
      +
    + + + +
      +
    • +

      getCapabilities

      +
      String getCapabilities​(int index)
      repeated string capabilities = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The capabilities at the given index.
      -
    • -
    • -
      -

      getCapabilitiesBytes

      -
      com.google.protobuf.ByteString getCapabilitiesBytes(int index)
      +
    + + + +
      +
    • +

      getCapabilitiesBytes

      +
      com.google.protobuf.ByteString getCapabilitiesBytes​(int index)
      repeated string capabilities = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the capabilities at the given index.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.Builder.html index cdfb271c5..74023032c 100644 --- a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.RenameActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RenameActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RenameActorReminderRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RenameActorReminderRequest.Builder> -
    io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RenameActorReminderRequest.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RenameActorReminderRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.RenameActorReminderRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.RenameActorReminderRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.RenameActorReminderRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.RenameActorReminderRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getOldName

      -
      public String getOldName()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setOldNameBytes

      +
      public DaprProtos.RenameActorReminderRequest.Builder setOldNameBytes​(com.google.protobuf.ByteString value)
      string old_name = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for oldName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getNewName

      -
      public String getNewName()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.html b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.html index 3139f2f18..e16882fe5 100644 --- a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.html +++ b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.RenameActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RenameActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.RenameActorReminderRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.RenameActorReminderRequest
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RenameActorReminderRequest

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.RenameActorReminderRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      NEW_NAME_FIELD_NUMBER

      +
      public static final int NEW_NAME_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getNewNameBytes

      +
      public com.google.protobuf.ByteString getNewNameBytes()
      string new_name = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getNewNameBytes in interface DaprProtos.RenameActorReminderRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for newName.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RenameActorReminderRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RenameActorReminderRequest parseFrom​(ByteBuffer data,
      +                                                              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                       throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RenameActorReminderRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RenameActorReminderRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                       throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RenameActorReminderRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RenameActorReminderRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                       throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RenameActorReminderRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.RenameActorReminderRequest parseFrom​(byte[] data)
      +                                                       throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.RenameActorReminderRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.RenameActorReminderRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.RenameActorReminderRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.RenameActorReminderRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequestOrBuilder.html index 8bcdf8098..583dbbec4 100644 --- a/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.RenameActorReminderRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.RenameActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.RenameActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.RenameActorReminderRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.RenameActorReminderRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.RenameActorReminderRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - - - -
        +
        StringgetNewName()
        string new_name = 4;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNewNameBytes()
        string new_name = 4;
        - - - -
        +
        StringgetOldName()
        string old_name = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetOldNameBytes()
        string old_name = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getOldName

      -
      String getOldName()
      +
    + + + +
      +
    • +

      getOldName

      +
      String getOldName()
      string old_name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The oldName.
      -
    • -
    • -
      -

      getOldNameBytes

      -
      com.google.protobuf.ByteString getOldNameBytes()
      +
    + + + +
      +
    • +

      getOldNameBytes

      +
      com.google.protobuf.ByteString getOldNameBytes()
      string old_name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for oldName.
      -
    • -
    • -
      -

      getNewName

      -
      String getNewName()
      +
    + + + +
      +
    • +

      getNewName

      +
      String getNewName()
      string new_name = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The newName.
      -
    • -
    • -
      -

      getNewNameBytes

      -
      com.google.protobuf.ByteString getNewNameBytes()
      +
    + + + +
      +
    • +

      getNewNameBytes

      +
      com.google.protobuf.ByteString getNewNameBytes()
      string new_name = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for newName.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html index 240287909..97d5d0242 100644 --- a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SaveStateRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SaveStateRequest.Builder> -
    io.dapr.v1.DaprProtos.SaveStateRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SaveStateRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SaveStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.SaveStateRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.SaveStateRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.SaveStateRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SaveStateRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.SaveStateRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.SaveStateRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                              throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SaveStateRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.SaveStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.SaveStateRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of state store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getStatesList

      -
      public List<CommonProtos.StateItem> getStatesList()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getStatesBuilderList

      +
      public List<CommonProtos.StateItem.Builder> getStatesBuilderList()
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.SaveStateRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.SaveStateRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SaveStateRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.SaveStateRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.SaveStateRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SaveStateRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.html b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.html index 265801932..9e670e570 100644 --- a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.html +++ b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.SaveStateRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SaveStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SaveStateRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.SaveStateRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SaveStateRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SaveStateRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of state store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.SaveStateRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SaveStateRequest parseFrom​(ByteBuffer data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SaveStateRequest parseFrom​(ByteBuffer data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SaveStateRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SaveStateRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SaveStateRequest parseFrom​(byte[] data)
      +                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SaveStateRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.SaveStateRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.SaveStateRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.SaveStateRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.SaveStateRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.SaveStateRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SaveStateRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SaveStateRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SaveStateRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SaveStateRequestOrBuilder.html index e1a24ca63..96839d3df 100644 --- a/docs/io/dapr/v1/DaprProtos.SaveStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SaveStateRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.SaveStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SaveStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.SaveStateRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SaveStateRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.SaveStateRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + +
      +
    • +

      getStates

      +
      CommonProtos.StateItem getStates​(int index)
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesCount

      -
      int getStatesCount()
      +
    + + + +
      +
    • +

      getStatesCount

      +
      int getStatesCount()
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    • -
    • -
      -

      getStatesOrBuilderList

      -
      List<? extends CommonProtos.StateItemOrBuilder> getStatesOrBuilderList()
      +
    + + + + + + + +
      +
    • +

      getStatesOrBuilder

      +
      CommonProtos.StateItemOrBuilder getStatesOrBuilder​(int index)
        The array of the state key values.
        
      repeated .dapr.proto.common.v1.StateItem states = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SecretResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SecretResponse.Builder.html index e32c7c8ff..d11b45bea 100644 --- a/docs/io/dapr/v1/DaprProtos.SecretResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SecretResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.SecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SecretResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder> -
    io.dapr.v1.DaprProtos.SecretResponse.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SecretResponse.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.SecretResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.SecretResponse build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.SecretResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.SecretResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.SecretResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.SecretResponse.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.SecretResponse.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.SecretResponse.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                          int index,
      +                                                          Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.SecretResponse.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.SecretResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.SecretResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SecretResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSecretsCount

      -
      public int getSecretsCount()
      -
      Description copied from interface: DaprProtos.SecretResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.SecretResponse.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.SecretResponse.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.SecretResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SecretResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SecretResponse.html b/docs/io/dapr/v1/DaprProtos.SecretResponse.html index 212618d9d..2a512101f 100644 --- a/docs/io/dapr/v1/DaprProtos.SecretResponse.html +++ b/docs/io/dapr/v1/DaprProtos.SecretResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.SecretResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SecretResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.SecretResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SecretResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SecretResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class DaprProtos.SecretResponse.Builder
        SecretResponse is a map of decrypted string/string values
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intSECRETS_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          SECRETS_FIELD_NUMBER

          -
          public static final int SECRETS_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        newInstance

        -
        protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        -
        -
        Overrides:
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            newInstance

            +
            protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
            +
            +
            Overrides:
            newInstance in class com.google.protobuf.GeneratedMessageV3
            -
      • -
      • -
        -

        getUnknownFields

        -
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        -
        -
        Specified by:
        +
      + + + +
        +
      • +

        getUnknownFields

        +
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        +
        +
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        -
        Overrides:
        +
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
        -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getSecretsCount

      -
      public int getSecretsCount()
      -
      Description copied from interface: DaprProtos.SecretResponseOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SecretResponse parseFrom​(ByteBuffer data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SecretResponse parseFrom​(ByteBuffer data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SecretResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SecretResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SecretResponse parseFrom​(byte[] data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SecretResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.SecretResponse.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.SecretResponse.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.SecretResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.SecretResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.SecretResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.SecretResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.SecretResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SecretResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SecretResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SecretResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SecretResponseOrBuilder.html index 82e51f91e..211140ba6 100644 --- a/docs/io/dapr/v1/DaprProtos.SecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SecretResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.SecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.SecretResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SecretResponseOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.SecretResponse, DaprProtos.SecretResponse.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.SecretResponseOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.SecretResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getSecretsCount

          -
          int getSecretsCount()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getSecretsCount

              +
              int getSecretsCount()
              map<string, string> secrets = 1;
              -
        • -
        • -
          -

          containsSecrets

          -
          boolean containsSecrets(String key)
          +
        + + + +
          +
        • +

          containsSecrets

          +
          boolean containsSecrets​(String key)
          map<string, string> secrets = 1;
          -
      • -
      • -
        -

        getSecrets

        -
        @Deprecated -Map<String,​String> getSecrets()
        -
        Deprecated.
        +
      + + + +
    • -
    • -
      -

      getSecretsMap

      -
      Map<String,​String> getSecretsMap()
      +
    + + + +
      +
    • +

      getSecretsMap

      +
      Map<String,​String> getSecretsMap()
      map<string, string> secrets = 1;
      -
    • -
    • -
      -

      getSecretsOrDefault

      -
      String getSecretsOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getSecretsOrDefault

      +
      String getSecretsOrDefault​(String key,
      +                           String defaultValue)
      map<string, string> secrets = 1;
      -
    • -
    • -
      -

      getSecretsOrThrow

      -
      String getSecretsOrThrow(String key)
      +
    + + + +
      +
    • +

      getSecretsOrThrow

      +
      String getSecretsOrThrow​(String key)
      map<string, string> secrets = 1;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.Builder.html index 711a2d2c2..0004e1aea 100644 --- a/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.SetMetadataRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SetMetadataRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SetMetadataRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SetMetadataRequest.Builder> -
    io.dapr.v1.DaprProtos.SetMetadataRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SetMetadataRequest.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SetMetadataRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.SetMetadataRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.SetMetadataRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.SetMetadataRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SetMetadataRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.SetMetadataRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.SetMetadataRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SetMetadataRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.SetMetadataRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.SetMetadataRequest.Builder setKeyBytes​(com.google.protobuf.ByteString value)
      string key = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getValue

      -
      public String getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      public String getValue()
      string value = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface DaprProtos.SetMetadataRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setValueBytes

      +
      public DaprProtos.SetMetadataRequest.Builder setValueBytes​(com.google.protobuf.ByteString value)
      string value = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for value to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.SetMetadataRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.SetMetadataRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SetMetadataRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.html b/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.html index 65a39542b..190c2fbd4 100644 --- a/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.html +++ b/docs/io/dapr/v1/DaprProtos.SetMetadataRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.SetMetadataRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SetMetadataRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SetMetadataRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.SetMetadataRequest
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SetMetadataRequest

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SetMetadataRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + +
      +
    • +

      getKey

      +
      public String getKey()
      string key = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKey in interface DaprProtos.SetMetadataRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The key.
      -
    • -
    • -
      -

      getKeyBytes

      -
      public com.google.protobuf.ByteString getKeyBytes()
      +
    + + + + + + + +
      +
    • +

      getValue

      +
      public String getValue()
      string value = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface DaprProtos.SetMetadataRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueBytes

      -
      public com.google.protobuf.ByteString getValueBytes()
      +
    + + + +
      +
    • +

      getValueBytes

      +
      public com.google.protobuf.ByteString getValueBytes()
      string value = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValueBytes in interface DaprProtos.SetMetadataRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for value.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SetMetadataRequest parseFrom​(ByteBuffer data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SetMetadataRequest parseFrom​(ByteBuffer data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SetMetadataRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SetMetadataRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SetMetadataRequest parseFrom​(byte[] data)
      +                                               throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SetMetadataRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.SetMetadataRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.SetMetadataRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.SetMetadataRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.SetMetadataRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.SetMetadataRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SetMetadataRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SetMetadataRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SetMetadataRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SetMetadataRequestOrBuilder.html index 8f6598233..fad2d8f98 100644 --- a/docs/io/dapr/v1/DaprProtos.SetMetadataRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SetMetadataRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.SetMetadataRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SetMetadataRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.SetMetadataRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SetMetadataRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.SetMetadataRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetKey()
        string key = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetKeyBytes()
        string key = 1;
        - - - -
        +
        StringgetValue()
        string value = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetValueBytes()
        string value = 2;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getKey

          -
          String getKey()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getKey

              +
              String getKey()
              string key = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The key.
              -
        • -
        • -
          -

          getKeyBytes

          -
          com.google.protobuf.ByteString getKeyBytes()
          +
        + + + +
          +
        • +

          getKeyBytes

          +
          com.google.protobuf.ByteString getKeyBytes()
          string key = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for key.
          -
      • -
      • -
        -

        getValue

        -
        String getValue()
        +
      + + + +
        +
      • +

        getValue

        +
        String getValue()
        string value = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The value.
        -
    • -
    • -
      -

      getValueBytes

      -
      com.google.protobuf.ByteString getValueBytes()
      +
    + + + +
      +
    • +

      getValueBytes

      +
      com.google.protobuf.ByteString getValueBytes()
      string value = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for value.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.Builder.html new file mode 100644 index 000000000..d913568f9 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.Builder.html @@ -0,0 +1,1360 @@ + + + + + +DaprProtos.StartWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.StartWorkflowRequest.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.html new file mode 100644 index 000000000..5ee4312a1 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequest.html @@ -0,0 +1,1375 @@ + + + + + +DaprProtos.StartWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.StartWorkflowRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.StartWorkflowRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.StartWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..7eb0a1dfc --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.StartWorkflowRequestOrBuilder.html @@ -0,0 +1,518 @@ + + + + + +DaprProtos.StartWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.StartWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          string workflow_component = 2;
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          string workflow_component = 2;
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowName

          +
          String getWorkflowName()
          +
          string workflow_name = 3;
          +
          +
          Returns:
          +
          The workflowName.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowNameBytes

          +
          com.google.protobuf.ByteString getWorkflowNameBytes()
          +
          string workflow_name = 3;
          +
          +
          Returns:
          +
          The bytes for workflowName.
          +
          +
        • +
        + + + +
          +
        • +

          getOptionsCount

          +
          int getOptionsCount()
          +
          map<string, string> options = 4;
          +
        • +
        + + + +
          +
        • +

          containsOptions

          +
          boolean containsOptions​(String key)
          +
          map<string, string> options = 4;
          +
        • +
        + + + + + + + +
          +
        • +

          getOptionsMap

          +
          Map<String,​String> getOptionsMap()
          +
          map<string, string> options = 4;
          +
        • +
        + + + +
          +
        • +

          getOptionsOrDefault

          +
          String getOptionsOrDefault​(String key,
          +                           String defaultValue)
          +
          map<string, string> options = 4;
          +
        • +
        + + + +
          +
        • +

          getOptionsOrThrow

          +
          String getOptionsOrThrow​(String key)
          +
          map<string, string> options = 4;
          +
        • +
        + + + +
          +
        • +

          getInput

          +
          com.google.protobuf.ByteString getInput()
          +
          bytes input = 5;
          +
          +
          Returns:
          +
          The input.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.Builder.html index 2a7305891..a0703562a 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SubscribeConfigurationRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationRequest.Builder> -
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubscribeConfigurationRequest.Builder

    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.SubscribeConfigurationRequest.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationRequest.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationRequest.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SubscribeConfigurationRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SubscribeConfigurationRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.SubscribeConfigurationRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of configuration store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -685,18 +946,21 @@ 

      getKeysList

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -704,18 +968,21 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -723,20 +990,23 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      public com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -744,21 +1014,24 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysBytes in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      setKeys

      -
      public DaprProtos.SubscribeConfigurationRequest.Builder setKeys(int index, - String value)
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      addKeysBytes

      +
      public DaprProtos.SubscribeConfigurationRequest.Builder addKeysBytes​(com.google.protobuf.ByteString value)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -841,189 +1126,286 @@ 

      addKeysBytes

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes of the keys to add.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.SubscribeConfigurationRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.html index 124bee221..9616eb042 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SubscribeConfigurationRequest

    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubscribeConfigurationRequest

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
    -
    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SubscribeConfigurationRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        The name of configuration store.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getKeysList

      -
      public com.google.protobuf.ProtocolStringList getKeysList()
      +
    + + + +
      +
    • +

      getKeysList

      +
      public com.google.protobuf.ProtocolStringList getKeysList()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -509,18 +764,21 @@ 

      getKeysList

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysList in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      A list containing the keys.
      -
    • -
    • -
      -

      getKeysCount

      -
      public int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      public int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -528,18 +786,21 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysCount in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      public String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      public String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -547,20 +808,23 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeys in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      public com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      public com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -568,403 +832,557 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getKeysBytes in interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      -
      Parameters:
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getMetadataCount

      -
      public int getMetadataCount()
      -
      Description copied from interface: DaprProtos.SubscribeConfigurationRequestOrBuilder
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationRequest parseFrom​(ByteBuffer data,
      +                                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationRequest parseFrom​(byte[] data)
      +                                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.SubscribeConfigurationRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SubscribeConfigurationRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SubscribeConfigurationRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequestOrBuilder.html index b5671204d..7eff81660 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.SubscribeConfigurationRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubscribeConfigurationRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.SubscribeConfigurationRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of configuration store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of configuration store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getKeysList

        -
        List<String> getKeysList()
        +
      + + + +
        +
      • +

        getKeysList

        +
        List<String> getKeysList()
          Optional. The key of the configuration item to fetch.
          If set, only query for the specified configuration items.
        @@ -239,16 +336,19 @@ 

        getKeysList

        repeated string keys = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        A list containing the keys.
        -
    • -
    • -
      -

      getKeysCount

      -
      int getKeysCount()
      +
    + + + +
      +
    • +

      getKeysCount

      +
      int getKeysCount()
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -256,16 +356,19 @@ 

      getKeysCount

      repeated string keys = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The count of keys.
      -
    • -
    • -
      -

      getKeys

      -
      String getKeys(int index)
      +
    + + + +
      +
    • +

      getKeys

      +
      String getKeys​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -273,18 +376,21 @@ 

      getKeys

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the element to return.
      -
      Returns:
      +
      Returns:
      The keys at the given index.
      -
    • -
    • -
      -

      getKeysBytes

      -
      com.google.protobuf.ByteString getKeysBytes(int index)
      +
    + + + +
      +
    • +

      getKeysBytes

      +
      com.google.protobuf.ByteString getKeysBytes​(int index)
        Optional. The key of the configuration item to fetch.
        If set, only query for the specified configuration items.
      @@ -292,91 +398,167 @@ 

      getKeysBytes

      repeated string keys = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      index - The index of the value to return.
      -
      Returns:
      +
      Returns:
      The bytes of the keys at the given index.
      -
    • -
    • -
      -

      getMetadataCount

      -
      int getMetadataCount()
      +
    + + + +
      +
    • +

      getMetadataCount

      +
      int getMetadataCount()
        The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      containsMetadata

      -
      boolean containsMetadata(String key)
      +
    + + + +
      +
    • +

      containsMetadata

      +
      boolean containsMetadata​(String key)
        The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadata

      -
      @Deprecated -Map<String,​String> getMetadata()
      -
      Deprecated.
      +
    + + + + + + + +
      +
    • +

      getMetadataMap

      +
      Map<String,​String> getMetadataMap()
        The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrDefault

      -
      String getMetadataOrDefault(String key, - String defaultValue)
      +
    + + + +
      +
    • +

      getMetadataOrDefault

      +
      String getMetadataOrDefault​(String key,
      +                            String defaultValue)
        The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    • -
    • -
      -

      getMetadataOrThrow

      -
      String getMetadataOrThrow(String key)
      +
    + + + +
      +
    • +

      getMetadataOrThrow

      +
      String getMetadataOrThrow​(String key)
        The metadata which will be sent to configuration store components.
        
      map<string, string> metadata = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.Builder.html index 33f4ce8b6..b455a53a9 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SubscribeConfigurationResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationResponse.Builder> -
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubscribeConfigurationResponse.Builder

    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      clear

      +
      public DaprProtos.SubscribeConfigurationResponse.Builder clear()
      +
      +
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationResponse.Builder>
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubscribeConfigurationResponse.Builder>
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SubscribeConfigurationResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.html index d01903ee5..98e1ef835 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.SubscribeConfigurationResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubscribeConfigurationResponse

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SubscribeConfigurationResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetMapField

      -
      protected com.google.protobuf.MapField internalGetMapField(int number)
      -
      -
      Overrides:
      +
    + + + +
      +
    • +

      internalGetMapField

      +
      protected com.google.protobuf.MapField internalGetMapField​(int number)
      +
      +
      Overrides:
      internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationResponse parseFrom​(ByteBuffer data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.SubscribeConfigurationResponse parseFrom​(byte[] data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.SubscribeConfigurationResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.SubscribeConfigurationResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.SubscribeConfigurationResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.SubscribeConfigurationResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponseOrBuilder.html index 79c5a3f97..83f929470 100644 --- a/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SubscribeConfigurationResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.SubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.SubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.SubscribeConfigurationResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubscribeConfigurationResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.SubscribeConfigurationResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getItemsOrThrow

      +
      CommonProtos.ConfigurationItem getItemsOrThrow​(String key)
        The list of items containing configuration values
        
      map<string, .dapr.proto.common.v1.ConfigurationItem> items = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html new file mode 100644 index 000000000..c99169cce --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html @@ -0,0 +1,927 @@ + + + + + +DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TerminateWorkflowRequest.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.html new file mode 100644 index 000000000..b8eb36c92 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.html @@ -0,0 +1,1103 @@ + + + + + +DaprProtos.TerminateWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TerminateWorkflowRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TerminateWorkflowRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(ByteBuffer data)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(byte[] data)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowRequest parseFrom​(byte[] data,
          +                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                     throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.TerminateWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.TerminateWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.TerminateWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.TerminateWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.TerminateWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..6ba6b81e1 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequestOrBuilder.html @@ -0,0 +1,349 @@ + + + + + +DaprProtos.TerminateWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TerminateWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        string instance_id = 1;
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        string instance_id = 1;
        +
        StringgetWorkflowComponent() +
        string workflow_component = 2;
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        string workflow_component = 2;
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          string workflow_component = 2;
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          string workflow_component = 2;
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html new file mode 100644 index 000000000..10a4057a2 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html @@ -0,0 +1,701 @@ + + + + + +DaprProtos.TerminateWorkflowResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TerminateWorkflowResponse.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html new file mode 100644 index 000000000..3e8d31bfb --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html @@ -0,0 +1,957 @@ + + + + + +DaprProtos.TerminateWorkflowResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TerminateWorkflowResponse

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TerminateWorkflowResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + + + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowResponse parseFrom​(ByteBuffer data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowResponse parseFrom​(byte[] data)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.TerminateWorkflowResponse parseFrom​(byte[] data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.TerminateWorkflowResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.TerminateWorkflowResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.TerminateWorkflowResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.TerminateWorkflowResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.TerminateWorkflowResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html new file mode 100644 index 000000000..bb01aaeab --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html @@ -0,0 +1,235 @@ + + + + + +DaprProtos.TerminateWorkflowResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TerminateWorkflowResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.Builder.html b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.Builder.html index 3d51ebbe1..6047cfcf8 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TransactionalActorStateOperation.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TransactionalActorStateOperation.Builder> -
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TransactionalActorStateOperation.Builder

    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setOperationTypeBytes

      +
      public DaprProtos.TransactionalActorStateOperation.Builder setOperationTypeBytes​(com.google.protobuf.ByteString value)
      string operationType = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for operationType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getKey

      -
      public String getKey()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setKeyBytes

      +
      public DaprProtos.TransactionalActorStateOperation.Builder setKeyBytes​(com.google.protobuf.ByteString value)
      string key = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for key to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasValue

      -
      public boolean hasValue()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getValueBuilder

      +
      public com.google.protobuf.Any.Builder getValueBuilder()
      .google.protobuf.Any value = 3;
      -
    • -
    • -
      -

      getValueOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getValueOrBuilder()
      +
    + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.html b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.html index e3185d7f5..41eca9d12 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperation.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalActorStateOperation (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalActorStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TransactionalActorStateOperation

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TransactionalActorStateOperation

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TransactionalActorStateOperation
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getOperationType

      -
      public String getOperationType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getValue

      +
      public com.google.protobuf.Any getValue()
      .google.protobuf.Any value = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getValue in interface DaprProtos.TransactionalActorStateOperationOrBuilder
      -
      Returns:
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueOrBuilder

      -
      public com.google.protobuf.AnyOrBuilder getValueOrBuilder()
      +
    + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalActorStateOperation parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalActorStateOperation parseFrom​(ByteBuffer data,
      +                                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalActorStateOperation parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalActorStateOperation parseFrom​(com.google.protobuf.ByteString data)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalActorStateOperation parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalActorStateOperation parseFrom​(com.google.protobuf.ByteString data,
      +                                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalActorStateOperation parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalActorStateOperation parseFrom​(byte[] data)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalActorStateOperation parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.TransactionalActorStateOperation> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.TransactionalActorStateOperation getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TransactionalActorStateOperation getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperationOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperationOrBuilder.html index bf45f27f5..bc87855fc 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperationOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalActorStateOperationOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalActorStateOperationOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalActorStateOperationOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.TransactionalActorStateOperationOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TransactionalActorStateOperationOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.TransactionalActorStateOperationOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetKey()
        string key = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetKeyBytes()
        string key = 2;
        - - - -
        +
        StringgetOperationType()
        string operationType = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetOperationTypeBytes()
        string operationType = 1;
        - -
        com.google.protobuf.Any
        - -
        +
        com.google.protobuf.AnygetValue()
        .google.protobuf.Any value = 3;
        - -
        com.google.protobuf.AnyOrBuilder
        - -
        +
        com.google.protobuf.AnyOrBuildergetValueOrBuilder()
        .google.protobuf.Any value = 3;
        - -
        boolean
        - -
        +
        booleanhasValue()
        .google.protobuf.Any value = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getOperationType

          -
          String getOperationType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getOperationType

              +
              String getOperationType()
              string operationType = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The operationType.
              -
        • -
        • -
          -

          getOperationTypeBytes

          -
          com.google.protobuf.ByteString getOperationTypeBytes()
          +
        + + + +
          +
        • +

          getOperationTypeBytes

          +
          com.google.protobuf.ByteString getOperationTypeBytes()
          string operationType = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for operationType.
          -
      • -
      • -
        -

        getKey

        -
        String getKey()
        +
      + + + +
        +
      • +

        getKey

        +
        String getKey()
        string key = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The key.
        -
    • -
    • -
      -

      getKeyBytes

      -
      com.google.protobuf.ByteString getKeyBytes()
      +
    + + + +
      +
    • +

      getKeyBytes

      +
      com.google.protobuf.ByteString getKeyBytes()
      string key = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for key.
      -
    • -
    • -
      -

      hasValue

      -
      boolean hasValue()
      +
    + + + +
      +
    • +

      hasValue

      +
      boolean hasValue()
      .google.protobuf.Any value = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      Whether the value field is set.
      -
    • -
    • -
      -

      getValue

      -
      com.google.protobuf.Any getValue()
      +
    + + + +
      +
    • +

      getValue

      +
      com.google.protobuf.Any getValue()
      .google.protobuf.Any value = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The value.
      -
    • -
    • -
      -

      getValueOrBuilder

      -
      com.google.protobuf.AnyOrBuilder getValueOrBuilder()
      +
    + + + +
      +
    • +

      getValueOrBuilder

      +
      com.google.protobuf.AnyOrBuilder getValueOrBuilder()
      .google.protobuf.Any value = 3;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.Builder.html b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.Builder.html index 75973dcaf..8b52330f6 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalStateOperation.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalStateOperation.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TransactionalStateOperation.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TransactionalStateOperation.Builder> -
    io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TransactionalStateOperation.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TransactionalStateOperation getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TransactionalStateOperation.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.TransactionalStateOperation.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      getOperationType

      +
      public String getOperationType()
        The type of operation to be executed
        
      string operationType = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperationType in interface DaprProtos.TransactionalStateOperationOrBuilder
      -
      Returns:
      +
      Returns:
      The operationType.
      -
    • -
    • -
      -

      getOperationTypeBytes

      -
      public com.google.protobuf.ByteString getOperationTypeBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setOperationTypeBytes

      +
      public DaprProtos.TransactionalStateOperation.Builder setOperationTypeBytes​(com.google.protobuf.ByteString value)
        The type of operation to be executed
        
      string operationType = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for operationType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      hasRequest

      -
      public boolean hasRequest()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.html b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.html index a79a27bc5..5d29c929f 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperation.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalStateOperation (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TransactionalStateOperation

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.TransactionalStateOperation
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TransactionalStateOperation

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TransactionalStateOperation
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getOperationType

      -
      public String getOperationType()
      +
    + + + +
      +
    • +

      getOperationType

      +
      public String getOperationType()
        The type of operation to be executed
        
      string operationType = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperationType in interface DaprProtos.TransactionalStateOperationOrBuilder
      -
      Returns:
      +
      Returns:
      The operationType.
      -
    • -
    • -
      -

      getOperationTypeBytes

      -
      public com.google.protobuf.ByteString getOperationTypeBytes()
      +
    + + + +
      +
    • +

      getOperationTypeBytes

      +
      public com.google.protobuf.ByteString getOperationTypeBytes()
        The type of operation to be executed
        
      string operationType = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getOperationTypeBytes in interface DaprProtos.TransactionalStateOperationOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for operationType.
      -
    • -
    • -
      -

      hasRequest

      -
      public boolean hasRequest()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalStateOperation parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalStateOperation parseFrom​(ByteBuffer data,
      +                                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalStateOperation parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalStateOperation parseFrom​(com.google.protobuf.ByteString data)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalStateOperation parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalStateOperation parseFrom​(com.google.protobuf.ByteString data,
      +                                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalStateOperation parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TransactionalStateOperation parseFrom​(byte[] data)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TransactionalStateOperation parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.TransactionalStateOperation> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.TransactionalStateOperation getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TransactionalStateOperation getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperationOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperationOrBuilder.html index a105f5e51..5c4eaed5e 100644 --- a/docs/io/dapr/v1/DaprProtos.TransactionalStateOperationOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.TransactionalStateOperationOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.TransactionalStateOperationOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TransactionalStateOperationOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.TransactionalStateOperationOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TransactionalStateOperationOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.TransactionalStateOperationOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetOperationType()
        The type of operation to be executed
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetOperationTypeBytes()
        The type of operation to be executed
        - - - -
        +
        CommonProtos.StateItemgetRequest()
        State values to be operated on
        - - - -
        +
        CommonProtos.StateItemOrBuildergetRequestOrBuilder()
        State values to be operated on
        - -
        boolean
        - -
        +
        booleanhasRequest()
        State values to be operated on
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getOperationType

          -
          String getOperationType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getOperationType

              +
              String getOperationType()
                The type of operation to be executed
                
              string operationType = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The operationType.
              -
        • -
        • -
          -

          getOperationTypeBytes

          -
          com.google.protobuf.ByteString getOperationTypeBytes()
          +
        + + + +
          +
        • +

          getOperationTypeBytes

          +
          com.google.protobuf.ByteString getOperationTypeBytes()
            The type of operation to be executed
            
          string operationType = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for operationType.
          -
      • -
      • -
        -

        hasRequest

        -
        boolean hasRequest()
        +
      + + + +
        +
      • +

        hasRequest

        +
        boolean hasRequest()
        - State values to be operated on 
        + State values to be operated on
          
        .dapr.proto.common.v1.StateItem request = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        Whether the request field is set.
        -
    • -
    • -
      -

      getRequest

      - +
    + + + +
      +
    • +

      getRequest

      +
      CommonProtos.StateItem getRequest()
      - State values to be operated on 
      + State values to be operated on
        
      .dapr.proto.common.v1.StateItem request = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The request.
      -
    • -
    • -
      -

      getRequestOrBuilder

      -
      CommonProtos.StateItemOrBuilder getRequestOrBuilder()
      +
    + + + +
      +
    • +

      getRequestOrBuilder

      +
      CommonProtos.StateItemOrBuilder getRequestOrBuilder()
      - State values to be operated on 
      + State values to be operated on
        
      .dapr.proto.common.v1.StateItem request = 2;
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.TryLockRequest.Builder.html index a057f8b69..e73a625da 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TryLockRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder> -
    io.dapr.v1.DaprProtos.TryLockRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TryLockRequest.Builder

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TryLockRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.TryLockRequest build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.TryLockRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.TryLockRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.TryLockRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.TryLockRequest.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.TryLockRequest.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.TryLockRequest.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                          int index,
      +                                                          Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.TryLockRequest.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.TryLockRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.TryLockRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.TryLockRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        Required. The lock store name,e.g. `redis`.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.TryLockRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        Required. The lock store name,e.g. `redis`.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getResourceId

      -
      public String getResourceId()
      +
    + + + +
      +
    • +

      getResourceId

      +
      public String getResourceId()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceId in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The resourceId.
      -
    • -
    • -
      -

      getResourceIdBytes

      -
      public com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + +
      +
    • +

      getResourceIdBytes

      +
      public com.google.protobuf.ByteString getResourceIdBytes()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceIdBytes in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for resourceId.
      -
    • -
    • -
      -

      setResourceId

      -
      public DaprProtos.TryLockRequest.Builder setResourceId(String value)
      +
    + + + +
      +
    • +

      setResourceId

      +
      public DaprProtos.TryLockRequest.Builder setResourceId​(String value)
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The resourceId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearResourceId

      -
      public DaprProtos.TryLockRequest.Builder clearResourceId()
      +
    + + + +
      +
    • +

      clearResourceId

      +
      public DaprProtos.TryLockRequest.Builder clearResourceId()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setResourceIdBytes

      -
      public DaprProtos.TryLockRequest.Builder setResourceIdBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setResourceIdBytes

      +
      public DaprProtos.TryLockRequest.Builder setResourceIdBytes​(com.google.protobuf.ByteString value)
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for resourceId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getLockOwner

      -
      public String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      public String getLockOwner()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -712,18 +964,21 @@ 

      getLockOwner

      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwner in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      public com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + +
      +
    • +

      getLockOwnerBytes

      +
      public com.google.protobuf.ByteString getLockOwnerBytes()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -740,18 +995,21 @@ 

      getLockOwnerBytes

      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwnerBytes in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for lockOwner.
      -
    • -
    • -
      -

      setLockOwner

      -
      public DaprProtos.TryLockRequest.Builder setLockOwner(String value)
      +
    + + + +
      +
    • +

      setLockOwner

      +
      public DaprProtos.TryLockRequest.Builder setLockOwner​(String value)
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -768,18 +1026,21 @@ 

      setLockOwner

      string lock_owner = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The lockOwner to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearLockOwner

      -
      public DaprProtos.TryLockRequest.Builder clearLockOwner()
      +
    + + + +
      +
    • +

      clearLockOwner

      +
      public DaprProtos.TryLockRequest.Builder clearLockOwner()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -796,16 +1057,19 @@ 

      clearLockOwner

      string lock_owner = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setLockOwnerBytes

      -
      public DaprProtos.TryLockRequest.Builder setLockOwnerBytes(com.google.protobuf.ByteString value)
      +
    + + + +
      +
    • +

      setLockOwnerBytes

      +
      public DaprProtos.TryLockRequest.Builder setLockOwnerBytes​(com.google.protobuf.ByteString value)
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -822,99 +1086,172 @@ 

      setLockOwnerBytes

      string lock_owner = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for lockOwner to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getExpiryInSeconds

      -
      public int getExpiryInSeconds()
      +
    + + + + + + + +
      +
    • +

      setExpiryInSeconds

      +
      public DaprProtos.TryLockRequest.Builder setExpiryInSeconds​(int value)
        Required. The time before expiry.The time unit is second.
        
      int32 expiryInSeconds = 4;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The expiryInSeconds to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      clearExpiryInSeconds

      -
      public DaprProtos.TryLockRequest.Builder clearExpiryInSeconds()
      +
    + + + +
      +
    • +

      clearExpiryInSeconds

      +
      public DaprProtos.TryLockRequest.Builder clearExpiryInSeconds()
        Required. The time before expiry.The time unit is second.
        
      int32 expiryInSeconds = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.TryLockRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.TryLockRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.TryLockRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.TryLockRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockRequest.html b/docs/io/dapr/v1/DaprProtos.TryLockRequest.html index c95773984..d732acc16 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockRequest.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TryLockRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.TryLockRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TryLockRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TryLockRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      EXPIRYINSECONDS_FIELD_NUMBER

      +
      public static final int EXPIRYINSECONDS_FIELD_NUMBER
      +
      +
      See Also:
      Constant Field Values
      -
    - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
        Required. The lock store name,e.g. `redis`.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
        Required. The lock store name,e.g. `redis`.
        
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getResourceId

      -
      public String getResourceId()
      +
    + + + +
      +
    • +

      getResourceId

      +
      public String getResourceId()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceId in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The resourceId.
      -
    • -
    • -
      -

      getResourceIdBytes

      -
      public com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + +
      +
    • +

      getResourceIdBytes

      +
      public com.google.protobuf.ByteString getResourceIdBytes()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceIdBytes in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for resourceId.
      -
    • -
    • -
      -

      getLockOwner

      -
      public String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      public String getLockOwner()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -519,18 +770,21 @@ 

      getLockOwner

      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwner in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      public com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + +
      +
    • +

      getLockOwnerBytes

      +
      public com.google.protobuf.ByteString getLockOwnerBytes()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -547,328 +801,467 @@ 

      getLockOwnerBytes

      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwnerBytes in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for lockOwner.
      -
    • -
    • -
      -

      getExpiryInSeconds

      -
      public int getExpiryInSeconds()
      +
    + + + +
      +
    • +

      getExpiryInSeconds

      +
      public int getExpiryInSeconds()
        Required. The time before expiry.The time unit is second.
        
      int32 expiryInSeconds = 4;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getExpiryInSeconds in interface DaprProtos.TryLockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The expiryInSeconds.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockRequest parseFrom​(ByteBuffer data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockRequest parseFrom​(ByteBuffer data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockRequest parseFrom​(byte[] data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.TryLockRequest.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.TryLockRequest.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.TryLockRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.TryLockRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.TryLockRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.TryLockRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.TryLockRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.TryLockRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TryLockRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TryLockRequestOrBuilder.html index c89e98223..ac109f5a2 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.TryLockRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TryLockRequestOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.TryLockRequest, DaprProtos.TryLockRequest.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.TryLockRequestOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.TryLockRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      int
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        intgetExpiryInSeconds()
        Required.
        - - - -
        +
        StringgetLockOwner()
        Required.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetLockOwnerBytes()
        Required.
        - - - -
        +
        StringgetResourceId()
        Required.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetResourceIdBytes()
        Required.
        - - - -
        +
        StringgetStoreName()
        Required.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetStoreNameBytes()
        Required.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                Required. The lock store name,e.g. `redis`.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            Required. The lock store name,e.g. `redis`.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getResourceId

        -
        String getResourceId()
        +
      + + + +
        +
      • +

        getResourceId

        +
        String getResourceId()
          Required. resource_id is the lock key. e.g. `order_id_111`
          It stands for "which resource I want to protect"
          
        string resource_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The resourceId.
        -
    • -
    • -
      -

      getResourceIdBytes

      -
      com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + +
      +
    • +

      getResourceIdBytes

      +
      com.google.protobuf.ByteString getResourceIdBytes()
        Required. resource_id is the lock key. e.g. `order_id_111`
        It stands for "which resource I want to protect"
        
      string resource_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for resourceId.
      -
    • -
    • -
      -

      getLockOwner

      -
      String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      String getLockOwner()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -250,16 +343,19 @@ 

      getLockOwner

      string lock_owner = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + +
      +
    • +

      getLockOwnerBytes

      +
      com.google.protobuf.ByteString getLockOwnerBytes()
        Required. lock_owner indicate the identifier of lock owner.
        You can generate a uuid as lock_owner.For example,in golang:
      @@ -276,39 +372,100 @@ 

      getLockOwnerBytes

      string lock_owner = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for lockOwner.
      -
    • -
    • -
      -

      getExpiryInSeconds

      -
      int getExpiryInSeconds()
      +
    + + + +
      +
    • +

      getExpiryInSeconds

      +
      int getExpiryInSeconds()
        Required. The time before expiry.The time unit is second.
        
      int32 expiryInSeconds = 4;
      -
      -
      Returns:
      +
      +
      Returns:
      The expiryInSeconds.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.TryLockResponse.Builder.html index 16ea67b81..54a130608 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TryLockResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockResponse.Builder> -
    io.dapr.v1.DaprProtos.TryLockResponse.Builder
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TryLockResponse.Builder

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TryLockResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.TryLockResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.TryLockResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.TryLockResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.TryLockResponse.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                           int index,
      +                                                           Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockResponse.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.TryLockResponse.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.TryLockResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.TryLockResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                             throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.TryLockResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSuccess

      -
      public boolean getSuccess()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.TryLockResponse.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockResponse.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.TryLockResponse.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.TryLockResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.TryLockResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockResponse.html b/docs/io/dapr/v1/DaprProtos.TryLockResponse.html index e2806c4b7..4f4f07788 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockResponse.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.TryLockResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.TryLockResponse
    -
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.TryLockResponse

    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.TryLockResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class DaprProtos.TryLockResponse.Builder
        Protobuf type dapr.proto.runtime.v1.TryLockResponse
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intSUCCESS_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object obj)
      -
       
      - - -
       
      - - -
       
      -
      static com.google.protobuf.Descriptors.Descriptor
      - -
       
      -
      com.google.protobuf.Parser<DaprProtos.TryLockResponse>
      - -
       
      -
      int
      - -
       
      -
      boolean
      - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          SUCCESS_FIELD_NUMBER

          -
          public static final int SUCCESS_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        newInstance

        -
        protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        -
        -
        Overrides:
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            newInstance

            +
            protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
            +
            +
            Overrides:
            newInstance in class com.google.protobuf.GeneratedMessageV3
            -
      • -
      • -
        -

        getUnknownFields

        -
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        -
        -
        Specified by:
        +
      + + + +
        +
      • +

        getUnknownFields

        +
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        +
        +
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        -
        Overrides:
        +
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
        -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getSuccess

      -
      public boolean getSuccess()
      +
    + + + +
      +
    • +

      getSuccess

      +
      public boolean getSuccess()
      bool success = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getSuccess in interface DaprProtos.TryLockResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The success.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockResponse parseFrom​(ByteBuffer data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockResponse parseFrom​(ByteBuffer data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.TryLockResponse parseFrom​(byte[] data)
      +                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.TryLockResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.TryLockResponse.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.TryLockResponse.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.TryLockResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.TryLockResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.TryLockResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.TryLockResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.TryLockResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.TryLockResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.TryLockResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.TryLockResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.TryLockResponseOrBuilder.html index 7bb6aad66..ebf42d87e 100644 --- a/docs/io/dapr/v1/DaprProtos.TryLockResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.TryLockResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.TryLockResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.TryLockResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.TryLockResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.TryLockResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.TryLockResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        booleangetSuccess()
        bool success = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getSuccess

          -
          boolean getSuccess()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getSuccess

              +
              boolean getSuccess()
              bool success = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The success.
              -
        -
      - +
    • +
    +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.UnlockRequest.Builder.html index f412edc4f..3614f70f6 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnlockRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder> -
    io.dapr.v1.DaprProtos.UnlockRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnlockRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnlockRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.UnlockRequest build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.UnlockRequest build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.UnlockRequest buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.UnlockRequest buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clone

      +
      public DaprProtos.UnlockRequest.Builder clone()
      +
      +
      Specified by:
      clone in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      clone in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      clone in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      setField

      -
      public DaprProtos.UnlockRequest.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + +
      +
    • +

      clearField

      +
      public DaprProtos.UnlockRequest.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
      +
      +
      Specified by:
      clearField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      clearOneof

      -
      public DaprProtos.UnlockRequest.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.UnlockRequest.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.UnlockRequest.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.UnlockRequest.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                         int index,
      +                                                         Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.UnlockRequest.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.UnlockRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.UnlockRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.UnlockRequest.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.UnlockRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getResourceId

      -
      public String getResourceId()
      +
    + + + +
      +
    • +

      getResourceId

      +
      public String getResourceId()
        resource_id is the lock key.
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceId in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The resourceId.
      -
    • -
    • -
      -

      getResourceIdBytes

      -
      public com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setResourceIdBytes

      +
      public DaprProtos.UnlockRequest.Builder setResourceIdBytes​(com.google.protobuf.ByteString value)
        resource_id is the lock key.
        
      string resource_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for resourceId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getLockOwner

      -
      public String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      public String getLockOwner()
      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwner in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      public com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      setLockOwnerBytes

      +
      public DaprProtos.UnlockRequest.Builder setLockOwnerBytes​(com.google.protobuf.ByteString value)
      string lock_owner = 3;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for lockOwner to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.UnlockRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.UnlockRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.UnlockRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.UnlockRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockRequest.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockRequest.html b/docs/io/dapr/v1/DaprProtos.UnlockRequest.html index 66d8fee47..1061718aa 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockRequest.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnlockRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnlockRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnlockRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnlockRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + +
      +
    • +

      getStoreName

      +
      public String getStoreName()
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreName in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The storeName.
      -
    • -
    • -
      -

      getStoreNameBytes

      -
      public com.google.protobuf.ByteString getStoreNameBytes()
      +
    + + + +
      +
    • +

      getStoreNameBytes

      +
      public com.google.protobuf.ByteString getStoreNameBytes()
      string store_name = 1;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getStoreNameBytes in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for storeName.
      -
    • -
    • -
      -

      getResourceId

      -
      public String getResourceId()
      +
    + + + +
      +
    • +

      getResourceId

      +
      public String getResourceId()
        resource_id is the lock key.
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceId in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The resourceId.
      -
    • -
    • -
      -

      getResourceIdBytes

      -
      public com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + +
      +
    • +

      getResourceIdBytes

      +
      public com.google.protobuf.ByteString getResourceIdBytes()
        resource_id is the lock key.
        
      string resource_id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getResourceIdBytes in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for resourceId.
      -
    • -
    • -
      -

      getLockOwner

      -
      public String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      public String getLockOwner()
      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwner in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      public com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + +
      +
    • +

      getLockOwnerBytes

      +
      public com.google.protobuf.ByteString getLockOwnerBytes()
      string lock_owner = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getLockOwnerBytes in interface DaprProtos.UnlockRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for lockOwner.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(ByteBuffer data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(ByteBuffer data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(byte[] data)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockRequest parseFrom​(byte[] data,
      +                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                          throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockRequest parseFrom(InputStream input) - throws IOException
      -
      -
      Throws:
      -
      IOException
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.UnlockRequest.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.UnlockRequest.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.UnlockRequest.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.UnlockRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.UnlockRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.UnlockRequest getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnlockRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnlockRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnlockRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnlockRequestOrBuilder.html index 2b2386a43..b111340cc 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnlockRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnlockRequestOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.UnlockRequest, DaprProtos.UnlockRequest.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.UnlockRequestOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.UnlockRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetLockOwner()
        string lock_owner = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetLockOwnerBytes()
        string lock_owner = 3;
        - - - -
        +
        StringgetResourceId()
        resource_id is the lock key.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetResourceIdBytes()
        resource_id is the lock key.
        - - - -
        +
        StringgetStoreName()
        string store_name = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetStoreNameBytes()
        string store_name = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getResourceId

        -
        String getResourceId()
        +
      + + + +
        +
      • +

        getResourceId

        +
        String getResourceId()
          resource_id is the lock key.
          
        string resource_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The resourceId.
        -
    • -
    • -
      -

      getResourceIdBytes

      -
      com.google.protobuf.ByteString getResourceIdBytes()
      +
    + + + +
      +
    • +

      getResourceIdBytes

      +
      com.google.protobuf.ByteString getResourceIdBytes()
        resource_id is the lock key.
        
      string resource_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for resourceId.
      -
    • -
    • -
      -

      getLockOwner

      -
      String getLockOwner()
      +
    + + + +
      +
    • +

      getLockOwner

      +
      String getLockOwner()
      string lock_owner = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The lockOwner.
      -
    • -
    • -
      -

      getLockOwnerBytes

      -
      com.google.protobuf.ByteString getLockOwnerBytes()
      +
    + + + +
      +
    • +

      getLockOwnerBytes

      +
      com.google.protobuf.ByteString getLockOwnerBytes()
      string lock_owner = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for lockOwner.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.UnlockResponse.Builder.html index 8da76fc53..630cd013f 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnlockResponse.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder> -
    io.dapr.v1.DaprProtos.UnlockResponse.Builder
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnlockResponse.Builder

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnlockResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      -
      public DaprProtos.UnlockResponse build()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      build

      +
      public DaprProtos.UnlockResponse build()
      +
      +
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      buildPartial

      -
      public DaprProtos.UnlockResponse buildPartial()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      buildPartial

      +
      public DaprProtos.UnlockResponse buildPartial()
      +
      +
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
      -
    • -
    • -
      -

      clone

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      clearOneof

      +
      public DaprProtos.UnlockResponse.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      +
      +
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder>
      -
    • -
    • -
      -

      setRepeatedField

      -
      public DaprProtos.UnlockResponse.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - int index, - Object value)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setRepeatedField

      +
      public DaprProtos.UnlockResponse.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
      +                                                          int index,
      +                                                          Object value)
      +
      +
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder>
      -
    • -
    • -
      -

      addRepeatedField

      -
      public DaprProtos.UnlockResponse.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, - Object value)
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.UnlockResponse.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeFrom

      +
      public DaprProtos.UnlockResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
      +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                            throws IOException
      +
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      -
      Specified by:
      +
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      -
      Overrides:
      +
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.UnlockResponse.Builder>
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getStatusValue

      -
      public int getStatusValue()
      +
    + + + + + + + +
      +
    • +

      setStatusValue

      +
      public DaprProtos.UnlockResponse.Builder setStatusValue​(int value)
      .dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The enum numeric value on the wire for status to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getStatus

      - +
    + + + + + + + + + + + +
      +
    • +

      clearStatus

      +
      public DaprProtos.UnlockResponse.Builder clearStatus()
      .dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
      -
      -
      Returns:
      +
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      setUnknownFields

      -
      public final DaprProtos.UnlockResponse.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      setUnknownFields

      +
      public final DaprProtos.UnlockResponse.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder>
      -
    • -
    • -
      -

      mergeUnknownFields

      -
      public final DaprProtos.UnlockResponse.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      mergeUnknownFields

      +
      public final DaprProtos.UnlockResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
      +
      +
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      -
      Overrides:
      +
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnlockResponse.Builder>
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockResponse.Status.html b/docs/io/dapr/v1/DaprProtos.UnlockResponse.Status.html index a1a8944f5..b0b10ad96 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockResponse.Status.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockResponse.Status.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockResponse.Status (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockResponse.Status (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Enum Class DaprProtos.UnlockResponse.Status

    -
    -
    java.lang.Object -
    java.lang.Enum<DaprProtos.UnlockResponse.Status> -
    io.dapr.v1.DaprProtos.UnlockResponse.Status
    +
    Package io.dapr.v1
    +

    Enum DaprProtos.UnlockResponse.Status

    -
    -
    -
    +
    + +
    +
    -
    -
      - -
    • -
      -

      Nested Class Summary

      -
      -

      Nested classes/interfaces inherited from class java.lang.Enum

      -Enum.EnumDesc<E extends Enum<E>>
      -
    • +
    +
    +
    + + + + + + + + + - + + -
  • -
    -

    Field Details

    -
      -
    • -
      -

      SUCCESS_VALUE

      -
      public static final int SUCCESS_VALUE
      +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          SUCCESS_VALUE

          +
          public static final int SUCCESS_VALUE
          SUCCESS = 0;
          -
          -
          See Also:
          +
          +
          See Also:
          Constant Field Values
          -
    • -
    • -
      -

      LOCK_DOES_NOT_EXIST_VALUE

      -
      public static final int LOCK_DOES_NOT_EXIST_VALUE
      +
    + + + +
      +
    • +

      LOCK_DOES_NOT_EXIST_VALUE

      +
      public static final int LOCK_DOES_NOT_EXIST_VALUE
      LOCK_DOES_NOT_EXIST = 1;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    LOCK_BELONGS_TO_OTHERS_VALUE

    -
    public static final int LOCK_BELONGS_TO_OTHERS_VALUE
    + + + + +
      +
    • +

      LOCK_BELONGS_TO_OTHERS_VALUE

      +
      public static final int LOCK_BELONGS_TO_OTHERS_VALUE
      LOCK_BELONGS_TO_OTHERS = 2;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • -
  • -
    -

    INTERNAL_ERROR_VALUE

    -
    public static final int INTERNAL_ERROR_VALUE
    + + + + +
      +
    • +

      INTERNAL_ERROR_VALUE

      +
      public static final int INTERNAL_ERROR_VALUE
      INTERNAL_ERROR = 3;
      -
      -
      See Also:
      +
      +
      See Also:
      Constant Field Values
      -
  • - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      values

      -
      public static DaprProtos.UnlockResponse.Status[] values()
      -
      Returns an array containing the constants of this enum class, in -the order they are declared.
      -
      -
      Returns:
      -
      an array containing the constants of this enum class, in the order they are declared
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static DaprProtos.UnlockResponse.Status[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (DaprProtos.UnlockResponse.Status c : DaprProtos.UnlockResponse.Status.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          -
    • -
    • -
      -

      valueOf

      -
      public static DaprProtos.UnlockResponse.Status valueOf(String name)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprProtos.UnlockResponse.Status valueOf​(String name)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      name - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    getNumber

    -
    public final int getNumber()
    -
    -
    Specified by:
    + + + + +
      +
    • +

      getNumber

      +
      public final int getNumber()
      +
      +
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      -
      Specified by:
      +
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
      -
  • -
  • -
    -

    valueOf

    -
    @Deprecated -public static DaprProtos.UnlockResponse.Status valueOf(int value)
    -
    Deprecated.
    -
    Returns the enum constant of this class with the specified name. + + + + +
      +
    • +

      valueOf

      +
      @Deprecated
      +public static DaprProtos.UnlockResponse.Status valueOf​(int value)
      +
      Deprecated.
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
  • -
  • -
    -

    forNumber

    -
    public static DaprProtos.UnlockResponse.Status forNumber(int value)
    -
    -
    Parameters:
    + + + + +
      +
    • +

      forNumber

      +
      public static DaprProtos.UnlockResponse.Status forNumber​(int value)
      +
      +
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      -
      Returns:
      +
      Returns:
      The enum associated with the given numeric wire value.
      -
  • -
  • -
    -

    internalGetValueMap

    -
    public static com.google.protobuf.Internal.EnumLiteMap<DaprProtos.UnlockResponse.Status> internalGetValueMap()
    -
    + + + + +
      +
    • +

      internalGetValueMap

      +
      public static com.google.protobuf.Internal.EnumLiteMap<DaprProtos.UnlockResponse.Status> internalGetValueMap()
    • -
    • -
      -

      getValueDescriptor

      -
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getValueDescriptor

      +
      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      +
      +
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptorForType

      -
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDescriptorForType

      +
      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      +
      +
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • -
    • -
      -

      valueOf

      -
      public static DaprProtos.UnlockResponse.Status valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      -
      Returns the enum constant of this class with the specified name. +
    + + + +
      +
    • +

      valueOf

      +
      public static DaprProtos.UnlockResponse.Status valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      +
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an -enum constant in this class. (Extraneous whitespace characters are +enum constant in this type. (Extraneous whitespace characters are not permitted.)
      -
      -
      Parameters:
      +
      +
      Parameters:
      desc - the name of the enum constant to be returned.
      -
      Returns:
      +
      Returns:
      the enum constant with the specified name
      -
      Throws:
      -
      IllegalArgumentException - if this enum class has no constant with the specified name
      -
      NullPointerException - if the argument is null
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockResponse.html b/docs/io/dapr/v1/DaprProtos.UnlockResponse.html index 6fe5786d1..645998e12 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockResponse.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnlockResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnlockResponse
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnlockResponse

    -
    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnlockResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Nested Class Summary

      -
      Nested Classes
      -
      -
      Modifier and Type
      -
      Class
      -
      Description
      -
      static class 
      - -
      +
      +
        +
      • + + +

        Nested Class Summary

        + + + + + + + + + + + + + + + + + +
        Nested Classes 
        Modifier and TypeClassDescription
        static class DaprProtos.UnlockResponse.Builder
        Protobuf type dapr.proto.runtime.v1.UnlockResponse
        - -
        static class 
        - -
        +
        static class DaprProtos.UnlockResponse.Status
        Protobuf enum dapr.proto.runtime.v1.UnlockResponse.Status
        - - -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        -com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        -
        -

        Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        -com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        - +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

          +com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
        • +
        +
          +
        • + + +

          Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

          +com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
        • +
      • - -
      • -
        -

        Field Summary

        -
        Fields
        -
        -
        Modifier and Type
        -
        Field
        -
        Description
        -
        static int
        - -
         
        -
        -
        -

        Fields inherited from class com.google.protobuf.GeneratedMessageV3

        -alwaysUseFieldBuilders, unknownFields
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessage

        -memoizedSize
        -
        -

        Fields inherited from class com.google.protobuf.AbstractMessageLite

        -memoizedHashCode
        +
      + +
      +
        +
      • + + +

        Field Summary

        + + + + + + + + + + + + +
        Fields 
        Modifier and TypeFieldDescription
        static intSTATUS_FIELD_NUMBER 
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.GeneratedMessageV3

          +alwaysUseFieldBuilders, unknownFields
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessage

          +memoizedSize
        • +
        +
          +
        • + + +

          Fields inherited from class com.google.protobuf.AbstractMessageLite

          +memoizedHashCode
        • +
      • +
      +
      -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      -
      boolean
      -
      equals​(Object obj)
      -
       
      - - -
       
      - - -
       
      -
      static com.google.protobuf.Descriptors.Descriptor
      - -
       
      -
      com.google.protobuf.Parser<DaprProtos.UnlockResponse>
      - -
       
      -
      int
      - -
       
      - - -
      +
      +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Field Details

        -
          -
        • -
          -

          STATUS_FIELD_NUMBER

          -
          public static final int STATUS_FIELD_NUMBER
          -
          -
          See Also:
          +
          +
        -
      • +
      +
      -
    • -
      -

      Method Details

      -
        -
      • -
        -

        newInstance

        -
        protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        -
        -
        Overrides:
        +
        +
          +
        • + + +

          Method Detail

          + + + +
            +
          • +

            newInstance

            +
            protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
            +
            +
            Overrides:
            newInstance in class com.google.protobuf.GeneratedMessageV3
            -
      • -
      • -
        -

        getUnknownFields

        -
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        -
        -
        Specified by:
        +
      + + + +
        +
      • +

        getUnknownFields

        +
        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        +
        +
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        -
        Overrides:
        +
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
        -
    • -
    • -
      -

      getDescriptor

      -
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      -
      +
    + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStatusValue

      -
      public int getStatusValue()
      +
    + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockResponse parseFrom​(ByteBuffer data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockResponse parseFrom​(ByteBuffer data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnlockResponse parseFrom​(byte[] data)
      +                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnlockResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      newBuilderForType

      +
      public DaprProtos.UnlockResponse.Builder newBuilderForType()
      +
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilder

      -
      public static DaprProtos.UnlockResponse.Builder newBuilder()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      toBuilder

      +
      public DaprProtos.UnlockResponse.Builder toBuilder()
      +
      +
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
      -
    • -
    • -
      -

      newBuilderForType

      -
      protected DaprProtos.UnlockResponse.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      newBuilderForType

      +
      protected DaprProtos.UnlockResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      +
      +
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstance

      -
      public static DaprProtos.UnlockResponse getDefaultInstance()
      -
      +
    + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnlockResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnlockResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnlockResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnlockResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnlockResponseOrBuilder.html index e5a4d5ac1..d80c17936 100644 --- a/docs/io/dapr/v1/DaprProtos.UnlockResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnlockResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnlockResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnlockResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnlockResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnlockResponseOrBuilder

    -
    -
    +
    +
    +
      +
    • +
      All Superinterfaces:
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      -
      +
      All Known Implementing Classes:
      DaprProtos.UnlockResponse, DaprProtos.UnlockResponse.Builder
      -
      +
      Enclosing class:
      DaprProtos

      -
      public static interface DaprProtos.UnlockResponseOrBuilder -extends com.google.protobuf.MessageOrBuilder
      -
    -
    -
      +
      public static interface DaprProtos.UnlockResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        DaprProtos.UnlockResponse.StatusgetStatus()
        .dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
        - -
        int
        - -
        +
        intgetStatusValue()
        .dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStatusValue

          -
          int getStatusValue()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStatusValue

              +
              int getStatusValue()
              .dapr.proto.runtime.v1.UnlockResponse.Status status = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The enum numeric value on the wire for status.
              -
        • -
        • -
          -

          getStatus

          - +
        + + + +
      -
    - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.Builder.html index f67da4f78..9328cd977 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnregisterActorReminderRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnregisterActorReminderRequest.Builder> -
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnregisterActorReminderRequest.Builder

    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.UnregisterActorReminderRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.UnregisterActorReminderRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.html index 3cce055c7..7c4d50166 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnregisterActorReminderRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnregisterActorReminderRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnregisterActorReminderRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getNameBytes

      +
      public com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getNameBytes in interface DaprProtos.UnregisterActorReminderRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorReminderRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorReminderRequest parseFrom​(ByteBuffer data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorReminderRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorReminderRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorReminderRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorReminderRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorReminderRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorReminderRequest parseFrom​(byte[] data)
      +                                                           throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorReminderRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnregisterActorReminderRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnregisterActorReminderRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnregisterActorReminderRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequestOrBuilder.html index e90972677..19e9429d2 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorReminderRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnregisterActorReminderRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnregisterActorReminderRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.UnregisterActorReminderRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - - - -
        +
        StringgetName()
        string name = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        string name = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getName

      -
      String getName()
      +
    + + + +
      +
    • +

      getName

      +
      String getName()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for name.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.Builder.html index 7ad72c881..fa7b9c067 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorTimerRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorTimerRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnregisterActorTimerRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnregisterActorTimerRequest.Builder> -
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnregisterActorTimerRequest.Builder

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnregisterActorTimerRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    • -
    • -
      -

      build

      - -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnregisterActorTimerRequest.Builder>
      -
    • -
    • -
      -

      mergeFrom

      -
      public DaprProtos.UnregisterActorTimerRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws IOException
      -
      -
      Specified by:
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorTypeBytes

      +
      public DaprProtos.UnregisterActorTimerRequest.Builder setActorTypeBytes​(com.google.protobuf.ByteString value)
      string actor_type = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorType to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getActorId

      -
      public String getActorId()
      +
    + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setActorIdBytes

      +
      public DaprProtos.UnregisterActorTimerRequest.Builder setActorIdBytes​(com.google.protobuf.ByteString value)
      string actor_id = 2;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for actorId to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getName

      -
      public String getName()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.html index ea8e9daf2..57eb76310 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorTimerRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorTimerRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnregisterActorTimerRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
    -
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnregisterActorTimerRequest

    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnregisterActorTimerRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + - + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getActorType

      -
      public String getActorType()
      +
    + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getNameBytes

      +
      public com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getNameBytes in interface DaprProtos.UnregisterActorTimerRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for name.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorTimerRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorTimerRequest parseFrom​(ByteBuffer data,
      +                                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorTimerRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorTimerRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorTimerRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorTimerRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                               com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorTimerRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnregisterActorTimerRequest parseFrom​(byte[] data)
      +                                                        throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnregisterActorTimerRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnregisterActorTimerRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnregisterActorTimerRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnregisterActorTimerRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequestOrBuilder.html index 70f3e8525..1b80fa8ea 100644 --- a/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnregisterActorTimerRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnregisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnregisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnregisterActorTimerRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnregisterActorTimerRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.UnregisterActorTimerRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetActorId()
        string actor_id = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorIdBytes()
        string actor_id = 2;
        - - - -
        +
        StringgetActorType()
        string actor_type = 1;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetActorTypeBytes()
        string actor_type = 1;
        - - - -
        +
        StringgetName()
        string name = 3;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetNameBytes()
        string name = 3;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getActorType

          -
          String getActorType()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getActorType

              +
              String getActorType()
              string actor_type = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The actorType.
              -
        • -
        • -
          -

          getActorTypeBytes

          -
          com.google.protobuf.ByteString getActorTypeBytes()
          +
        + + + +
          +
        • +

          getActorTypeBytes

          +
          com.google.protobuf.ByteString getActorTypeBytes()
          string actor_type = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for actorType.
          -
      • -
      • -
        -

        getActorId

        -
        String getActorId()
        +
      + + + +
        +
      • +

        getActorId

        +
        String getActorId()
        string actor_id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The actorId.
        -
    • -
    • -
      -

      getActorIdBytes

      -
      com.google.protobuf.ByteString getActorIdBytes()
      +
    + + + +
      +
    • +

      getActorIdBytes

      +
      com.google.protobuf.ByteString getActorIdBytes()
      string actor_id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for actorId.
      -
    • -
    • -
      -

      getName

      -
      String getName()
      +
    + + + +
      +
    • +

      getName

      +
      String getName()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The name.
      -
    • -
    • -
      -

      getNameBytes

      -
      com.google.protobuf.ByteString getNameBytes()
      +
    + + + +
      +
    • +

      getNameBytes

      +
      com.google.protobuf.ByteString getNameBytes()
      string name = 3;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for name.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.Builder.html index 5fd4bc76d..5aa929458 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnsubscribeConfigurationRequest.Builder

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnsubscribeConfigurationRequest.Builder> -
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnsubscribeConfigurationRequest.Builder

    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      setStoreNameBytes

      +
      public DaprProtos.UnsubscribeConfigurationRequest.Builder setStoreNameBytes​(com.google.protobuf.ByteString value)
        The name of configuration store.
        
      string store_name = 1;
      -
      -
      Parameters:
      +
      +
      Parameters:
      value - The bytes for storeName to set.
      -
      Returns:
      +
      Returns:
      This builder for chaining.
      -
    • -
    • -
      -

      getId

      -
      public String getId()
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.html index c87e0791f..e972efca4 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequest.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnsubscribeConfigurationRequest

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnsubscribeConfigurationRequest

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getStoreName

      -
      public String getStoreName()
      +
    + + + + + + + + + + + + + + + +
      +
    • +

      getIdBytes

      +
      public com.google.protobuf.ByteString getIdBytes()
        The id to unsubscribe.
        
      string id = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getIdBytes in interface DaprProtos.UnsubscribeConfigurationRequestOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for id.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom​(ByteBuffer data,
      +                                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom​(com.google.protobuf.ByteString data)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom​(com.google.protobuf.ByteString data,
      +                                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom​(byte[] data)
      +                                                            throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationRequest parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnsubscribeConfigurationRequest> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnsubscribeConfigurationRequest getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnsubscribeConfigurationRequest getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html index 0c8cf53f2..8794f89b2 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnsubscribeConfigurationRequestOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnsubscribeConfigurationRequestOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.UnsubscribeConfigurationRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetId()
        The id to unsubscribe.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetIdBytes()
        The id to unsubscribe.
        - - - -
        +
        StringgetStoreName()
        The name of configuration store.
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetStoreNameBytes()
        The name of configuration store.
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getStoreName

          -
          String getStoreName()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getStoreName

              +
              String getStoreName()
                The name of configuration store.
                
              string store_name = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The storeName.
              -
        • -
        • -
          -

          getStoreNameBytes

          -
          com.google.protobuf.ByteString getStoreNameBytes()
          +
        + + + +
          +
        • +

          getStoreNameBytes

          +
          com.google.protobuf.ByteString getStoreNameBytes()
            The name of configuration store.
            
          string store_name = 1;
          -
          -
          Returns:
          +
          +
          Returns:
          The bytes for storeName.
          -
      • -
      • -
        -

        getId

        -
        String getId()
        +
      + + + +
        +
      • +

        getId

        +
        String getId()
          The id to unsubscribe.
          
        string id = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The id.
        -
    • -
    • -
      -

      getIdBytes

      -
      com.google.protobuf.ByteString getIdBytes()
      +
    + + + +
      +
    • +

      getIdBytes

      +
      com.google.protobuf.ByteString getIdBytes()
        The id to unsubscribe.
        
      string id = 2;
      -
      -
      Returns:
      +
      +
      Returns:
      The bytes for id.
      -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.Builder.html index ad96b83ea..62a660d76 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.Builder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnsubscribeConfigurationResponse.Builder

    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnsubscribeConfigurationResponse.Builder

    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite.Builder -
    com.google.protobuf.AbstractMessage.Builder<BuilderType> -
    com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.UnsubscribeConfigurationResponse.Builder> -
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder
    -
    -
    -
    -
    -
    -
    +
    + +
    +
    -
    -
      + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.html index de0a1a7f2..916c100d1 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponse.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos.UnsubscribeConfigurationResponse

    -
    -
    java.lang.Object -
    com.google.protobuf.AbstractMessageLite -
    com.google.protobuf.AbstractMessage -
    com.google.protobuf.GeneratedMessageV3 -
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
    -
    +
    Package io.dapr.v1
    +

    Class DaprProtos.UnsubscribeConfigurationResponse

    -
    -
    -
    -
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    -
    -
      + +
    +
    +
    + + -
  • -
    -

    Method Details

    -
      -
    • -
      -

      newInstance

      -
      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      -
      -
      Overrides:
      +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          newInstance in class com.google.protobuf.GeneratedMessageV3
          -
    • -
    • -
      -

      getUnknownFields

      -
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getUnknownFields

      +
      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      +
      +
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      -
      Overrides:
      +
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      -
  • -
  • -
    -

    getDescriptor

    -
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    -
    + + + + +
      +
    • +

      getDescriptor

      +
      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • -
    • -
      -

      internalGetFieldAccessorTable

      -
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      internalGetFieldAccessorTable

      +
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      +
      +
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getOk

      -
      public boolean getOk()
      +
    + + + + + + + + + + + +
      +
    • +

      getMessageBytes

      +
      public com.google.protobuf.ByteString getMessageBytes()
      string message = 2;
      -
      -
      Specified by:
      +
      +
      Specified by:
      getMessageBytes in interface DaprProtos.UnsubscribeConfigurationResponseOrBuilder
      -
      Returns:
      +
      Returns:
      The bytes for message.
      -
    • -
    • -
      -

      isInitialized

      -
      public final boolean isInitialized()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      isInitialized

      +
      public final boolean isInitialized()
      +
      +
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Overrides:
      +
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      writeTo

      -
      public void writeTo(com.google.protobuf.CodedOutputStream output) - throws IOException
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      writeTo

      +
      public void writeTo​(com.google.protobuf.CodedOutputStream output)
      +             throws IOException
      +
      +
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      -
      Throws:
      -
      IOException
      +
      Throws:
      +
      IOException
      -
    • -
    • -
      -

      getSerializedSize

      -
      public int getSerializedSize()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getSerializedSize

      +
      public int getSerializedSize()
      +
      +
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      equals

      -
      public boolean equals(Object obj)
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      equals

      +
      public boolean equals​(Object obj)
      +
      +
      Specified by:
      equals in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      hashCode

      -
      public int hashCode()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      hashCode

      +
      public int hashCode()
      +
      +
      Specified by:
      hashCode in interface com.google.protobuf.Message
      -
      Overrides:
      +
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom(ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom​(ByteBuffer data,
      +                                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom(com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom​(com.google.protobuf.ByteString data)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom(com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom​(com.google.protobuf.ByteString data,
      +                                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + +
      +
    • +

      parseFrom

      +
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom​(byte[] data)
      +                                                             throws com.google.protobuf.InvalidProtocolBufferException
      +
      +
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
      -
    • -
    • -
      -

      parseFrom

      -
      public static DaprProtos.UnsubscribeConfigurationResponse parseFrom(byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException
      -
      -
      Throws:
      +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
    • +

      getParserForType

      +
      public com.google.protobuf.Parser<DaprProtos.UnsubscribeConfigurationResponse> getParserForType()
      +
      +
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      -
      Specified by:
      +
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      -
      Overrides:
      +
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
      -
    • -
    • -
      -

      getDefaultInstanceForType

      -
      public DaprProtos.UnsubscribeConfigurationResponse getDefaultInstanceForType()
      -
      -
      Specified by:
      +
    + + + +
      +
    • +

      getDefaultInstanceForType

      +
      public DaprProtos.UnsubscribeConfigurationResponse getDefaultInstanceForType()
      +
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      -
      Specified by:
      +
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      -
    -
  • - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html index 99c80b7e6..12d53e432 100644 --- a/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html @@ -2,40 +2,59 @@ - -DaprProtos.UnsubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +DaprProtos.UnsubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Interface DaprProtos.UnsubscribeConfigurationResponseOrBuilder

    +
    Package io.dapr.v1
    +

    Interface DaprProtos.UnsubscribeConfigurationResponseOrBuilder

    -
    -
    +
    +
    +
    -
    -
      +
      public static interface DaprProtos.UnsubscribeConfigurationResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      + +
    +
    +
    +
      +
    • -
    • -
      -

      Method Summary

      -
      -
      -
      -
      -
      Modifier and Type
      -
      Method
      -
      Description
      - - -
      +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetMessage()
        string message = 2;
        - -
        com.google.protobuf.ByteString
        - -
        +
        com.google.protobuf.ByteStringgetMessageBytes()
        string message = 2;
        - -
        boolean
        - -
        +
        booleangetOk()
        bool ok = 1;
        - - - - -
        -

        Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        -isInitialized
        -
        -

        Methods inherited from interface com.google.protobuf.MessageOrBuilder

        -findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        - +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
      -
      -
        + +
      +
      +
      +
        +
      • -
      • -
        -

        Method Details

        -
          -
        • -
          -

          getOk

          -
          boolean getOk()
          +
          +
            +
          • + + +

            Method Detail

            + + + +
              +
            • +

              getOk

              +
              boolean getOk()
              bool ok = 1;
              -
              -
              Returns:
              +
              +
              Returns:
              The ok.
              -
        • -
        • -
          -

          getMessage

          -
          String getMessage()
          +
        + + + +
          +
        • +

          getMessage

          +
          String getMessage()
          string message = 2;
          -
          -
          Returns:
          +
          +
          Returns:
          The message.
          -
      • -
      • -
        -

        getMessageBytes

        -
        com.google.protobuf.ByteString getMessageBytes()
        +
      + + + +
        +
      • +

        getMessageBytes

        +
        com.google.protobuf.ByteString getMessageBytes()
        string message = 2;
        -
        -
        Returns:
        +
        +
        Returns:
        The bytes for message.
        -
    - - + + +
    + +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/DaprProtos.WorkflowReference.Builder.html b/docs/io/dapr/v1/DaprProtos.WorkflowReference.Builder.html new file mode 100644 index 000000000..f70a8dca8 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.WorkflowReference.Builder.html @@ -0,0 +1,814 @@ + + + + + +DaprProtos.WorkflowReference.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.WorkflowReference.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.WorkflowReference getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.WorkflowReference build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.WorkflowReference buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          setRepeatedField

          +
          public DaprProtos.WorkflowReference.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
          +                                                             int index,
          +                                                             Object value)
          +
          +
          Specified by:
          +
          setRepeatedField in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.WorkflowReference.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.WorkflowReference.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          setInstanceId

          +
          public DaprProtos.WorkflowReference.Builder setInstanceId​(String value)
          +
          string instance_id = 1;
          +
          +
          Parameters:
          +
          value - The instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setInstanceIdBytes

          +
          public DaprProtos.WorkflowReference.Builder setInstanceIdBytes​(com.google.protobuf.ByteString value)
          +
          string instance_id = 1;
          +
          +
          Parameters:
          +
          value - The bytes for instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setUnknownFields

          +
          public final DaprProtos.WorkflowReference.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          setUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeUnknownFields

          +
          public final DaprProtos.WorkflowReference.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          mergeUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.WorkflowReference.Builder>
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.WorkflowReference.html b/docs/io/dapr/v1/DaprProtos.WorkflowReference.html new file mode 100644 index 000000000..f689bdde6 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.WorkflowReference.html @@ -0,0 +1,1039 @@ + + + + + +DaprProtos.WorkflowReference (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.WorkflowReference

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.WorkflowReference
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(ByteBuffer data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(ByteBuffer data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(com.google.protobuf.ByteString data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(com.google.protobuf.ByteString data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(byte[] data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.WorkflowReference parseFrom​(byte[] data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.WorkflowReference.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.WorkflowReference.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.WorkflowReference.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.WorkflowReference> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.WorkflowReference getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.WorkflowReferenceOrBuilder.html b/docs/io/dapr/v1/DaprProtos.WorkflowReferenceOrBuilder.html new file mode 100644 index 000000000..3218fa6b6 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.WorkflowReferenceOrBuilder.html @@ -0,0 +1,307 @@ + + + + + +DaprProtos.WorkflowReferenceOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.WorkflowReferenceOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        string instance_id = 1;
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        string instance_id = 1;
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          string instance_id = 1;
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + +
    + +

    Copyright © 2023. All rights reserved.

    +
    + + diff --git a/docs/io/dapr/v1/DaprProtos.html b/docs/io/dapr/v1/DaprProtos.html index 0feef8c1f..9df5f6453 100644 --- a/docs/io/dapr/v1/DaprProtos.html +++ b/docs/io/dapr/v1/DaprProtos.html @@ -2,40 +2,59 @@ - -DaprProtos (dapr-sdk-parent 1.7.1 API) - + +DaprProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -
    +
    -
    Package io.dapr.v1
    -

    Class DaprProtos

    -
    -
    java.lang.Object -
    io.dapr.v1.DaprProtos
    +
    Package io.dapr.v1
    +

    Class DaprProtos

    -
    +
    + +
    +
      +

    • -
      public final class DaprProtos -extends Object
      -
    -
    -
      +
      public final class DaprProtos
      +extends Object
      + +
    +
    +
    +
    + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackBlockingStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackFutureStub.html b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackFutureStub.html index 968412d2f..436bc342b 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackFutureStub.html +++ b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackFutureStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackFutureStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackImplBase.html b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackImplBase.html index d11c58bc7..f425877ce 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackImplBase.html +++ b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackImplBase.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase

    +

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase

    -No usage of io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
    +
    No usage of io.dapr.v1.AppCallbackGrpc.AppCallbackImplBase
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackStub.html b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackStub.html index bf4082030..9a33f9789 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackStub.html +++ b/docs/io/dapr/v1/class-use/AppCallbackGrpc.AppCallbackStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackGrpc.AppCallbackStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackGrpc.AppCallbackStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackGrpc.html b/docs/io/dapr/v1/class-use/AppCallbackGrpc.html index 2e251cd3a..f2ffd98e8 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackGrpc.html +++ b/docs/io/dapr/v1/class-use/AppCallbackGrpc.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.AppCallbackGrpc (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackGrpc

    +

    Uses of Class
    io.dapr.v1.AppCallbackGrpc

    -No usage of io.dapr.v1.AppCallbackGrpc
    +
    No usage of io.dapr.v1.AppCallbackGrpc
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html index 4b4120b34..91550c415 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html +++ b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckBlockingStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html index bb6cbd63d..72dd2633e 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html +++ b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckFutureStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html index c9e0064a2..1b5afc649 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html +++ b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase

    +

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase

    -No usage of io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
    +
    No usage of io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckImplBase
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html index 82cc1dc58..b45983f2f 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html +++ b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc.AppCallbackHealthCheckStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.html b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.html index 52b55272e..933c1e6ea 100644 --- a/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.html +++ b/docs/io/dapr/v1/class-use/AppCallbackHealthCheckGrpc.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.AppCallbackHealthCheckGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc

    +

    Uses of Class
    io.dapr.v1.AppCallbackHealthCheckGrpc

    -No usage of io.dapr.v1.AppCallbackHealthCheckGrpc
    +
    No usage of io.dapr.v1.AppCallbackHealthCheckGrpc
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.Builder.html index 84c0f1fd6..08bc05061 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.Builder.html @@ -2,201 +2,356 @@ - -Uses of Class io.dapr.v1.CommonProtos.ConfigurationItem.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.ConfigurationItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.ConfigurationItem.Builder

    +

    Uses of Class
    io.dapr.v1.CommonProtos.ConfigurationItem.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.html b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.html index db06f52aa..2c6039d9b 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItem.html @@ -2,382 +2,609 @@ - -Uses of Class io.dapr.v1.CommonProtos.ConfigurationItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.ConfigurationItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.ConfigurationItem

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItemOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItemOrBuilder.html index f5f3805e0..4604681e6 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItemOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.ConfigurationItemOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.CommonProtos.ConfigurationItemOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.Etag.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.Etag.Builder.html index ff75f8d57..510033361 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.Etag.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.Etag.Builder.html @@ -2,191 +2,344 @@ - -Uses of Class io.dapr.v1.CommonProtos.Etag.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.Etag.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.Etag.Builder

    +

    Uses of Class
    io.dapr.v1.CommonProtos.Etag.Builder

    -
    Packages that use CommonProtos.Etag.Builder
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.Etag.html b/docs/io/dapr/v1/class-use/CommonProtos.Etag.html index 67d4577fd..6b184d7c5 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.Etag.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.Etag.html @@ -2,228 +2,399 @@ - -Uses of Class io.dapr.v1.CommonProtos.Etag (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.Etag (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.Etag

    -
    -
    Packages that use CommonProtos.Etag
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.Etag

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.EtagOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.EtagOrBuilder.html index b87c06136..2c66520f6 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.EtagOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.EtagOrBuilder.html @@ -2,141 +2,262 @@ - -Uses of Interface io.dapr.v1.CommonProtos.EtagOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.EtagOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.EtagOrBuilder

    +

    Uses of Interface
    io.dapr.v1.CommonProtos.EtagOrBuilder

    -
    Packages that use CommonProtos.EtagOrBuilder
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Builder.html index faf3923d0..6b273e1cb 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Builder.html @@ -2,197 +2,352 @@ - -Uses of Class io.dapr.v1.CommonProtos.HTTPExtension.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.HTTPExtension.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.HTTPExtension.Builder

    +

    Uses of Class
    io.dapr.v1.CommonProtos.HTTPExtension.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Verb.html b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Verb.html index da70324b5..cff825205 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Verb.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.Verb.html @@ -2,150 +2,279 @@ - -Uses of Enum Class io.dapr.v1.CommonProtos.HTTPExtension.Verb (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.HTTPExtension.Verb (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.CommonProtos.HTTPExtension.Verb

    +

    Uses of Class
    io.dapr.v1.CommonProtos.HTTPExtension.Verb

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.html b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.html index 0c7048481..b94fe29d3 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtension.html @@ -2,198 +2,359 @@ - -Uses of Class io.dapr.v1.CommonProtos.HTTPExtension (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.HTTPExtension (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.HTTPExtension

    +

    Uses of Class
    io.dapr.v1.CommonProtos.HTTPExtension

    -
    Packages that use CommonProtos.HTTPExtension
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtensionOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtensionOrBuilder.html index c1bb522b7..034e92a60 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtensionOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.HTTPExtensionOrBuilder.html @@ -2,125 +2,240 @@ - -Uses of Interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.CommonProtos.HTTPExtensionOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.Builder.html index 56eb5dffa..9bc3300ba 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.Builder.html @@ -2,245 +2,416 @@ - -Uses of Class io.dapr.v1.CommonProtos.InvokeRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.InvokeRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeRequest.Builder

    +

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.html index 2053cdc5e..dd09e916d 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequest.html @@ -2,227 +2,398 @@ - -Uses of Class io.dapr.v1.CommonProtos.InvokeRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.InvokeRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeRequest

    -
    -
    Packages that use CommonProtos.InvokeRequest
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeRequest

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequestOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequestOrBuilder.html index 2ccfb38f8..2083a28af 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeRequestOrBuilder.html @@ -2,123 +2,238 @@ - -Uses of Interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.InvokeRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.InvokeRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.CommonProtos.InvokeRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.Builder.html index c84f96075..f73f59379 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.Builder.html @@ -2,185 +2,334 @@ - -Uses of Class io.dapr.v1.CommonProtos.InvokeResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.InvokeResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.html index 7cd21883c..c3077d32e 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponse.html @@ -2,232 +2,407 @@ - -Uses of Class io.dapr.v1.CommonProtos.InvokeResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.InvokeResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeResponse

    -
    -
    Packages that use CommonProtos.InvokeResponse
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.InvokeResponse

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponseOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponseOrBuilder.html index 5971c0936..d13636c94 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.InvokeResponseOrBuilder.html @@ -2,101 +2,206 @@ - -Uses of Interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.InvokeResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.InvokeResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.CommonProtos.InvokeResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateItem.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.StateItem.Builder.html index 0f96272d9..91f9b2cac 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateItem.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateItem.Builder.html @@ -2,399 +2,622 @@ - -Uses of Class io.dapr.v1.CommonProtos.StateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.StateItem.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateItem.html b/docs/io/dapr/v1/class-use/CommonProtos.StateItem.html index 142c3a013..2355aed23 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateItem.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateItem.html @@ -2,390 +2,615 @@ - -Uses of Class io.dapr.v1.CommonProtos.StateItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.StateItem

    -
    -
    Packages that use CommonProtos.StateItem
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateItemOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.StateItemOrBuilder.html index a4eecce1e..d6d4e8df7 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateItemOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateItemOrBuilder.html @@ -2,237 +2,392 @@ - -Uses of Interface io.dapr.v1.CommonProtos.StateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.StateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.StateItemOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.Builder.html index c05322870..b11df14bb 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.Builder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.Builder.html @@ -2,205 +2,364 @@ - -Uses of Class io.dapr.v1.CommonProtos.StateOptions.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateOptions.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConcurrency.html b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConcurrency.html index 8952b44da..660584850 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConcurrency.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConcurrency.html @@ -2,146 +2,275 @@ - -Uses of Enum Class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateOptions.StateConcurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.CommonProtos.StateOptions.StateConcurrency

    +

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions.StateConcurrency

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConsistency.html b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConsistency.html index 629a82824..33864a896 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConsistency.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.StateConsistency.html @@ -2,170 +2,307 @@ - -Uses of Enum Class io.dapr.v1.CommonProtos.StateOptions.StateConsistency (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateOptions.StateConsistency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.CommonProtos.StateOptions.StateConsistency

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions.StateConsistency

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.html b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.html index b5050f67c..d7a2220fb 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateOptions.html @@ -2,233 +2,404 @@ - -Uses of Class io.dapr.v1.CommonProtos.StateOptions (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos.StateOptions (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions

    -
    -
    Packages that use CommonProtos.StateOptions
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.CommonProtos.StateOptions

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StateOptionsOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.StateOptionsOrBuilder.html index 380275632..9e75a3691 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.StateOptionsOrBuilder.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.StateOptionsOrBuilder.html @@ -2,144 +2,265 @@ - -Uses of Interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.CommonProtos.StateOptionsOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.CommonProtos.StateOptionsOrBuilder

    +

    Uses of Interface
    io.dapr.v1.CommonProtos.StateOptionsOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.Builder.html b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.Builder.html new file mode 100644 index 000000000..1701819bf --- /dev/null +++ b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.Builder.html @@ -0,0 +1,311 @@ + + + + + +Uses of Class io.dapr.v1.CommonProtos.StreamPayload.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.CommonProtos.StreamPayload.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.html b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.html new file mode 100644 index 000000000..2c1369741 --- /dev/null +++ b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayload.html @@ -0,0 +1,320 @@ + + + + + +Uses of Class io.dapr.v1.CommonProtos.StreamPayload (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.CommonProtos.StreamPayload

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.StreamPayloadOrBuilder.html b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayloadOrBuilder.html new file mode 100644 index 000000000..1d7f52276 --- /dev/null +++ b/docs/io/dapr/v1/class-use/CommonProtos.StreamPayloadOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.CommonProtos.StreamPayloadOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.CommonProtos.StreamPayloadOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/CommonProtos.html b/docs/io/dapr/v1/class-use/CommonProtos.html index 04af278bd..e71d34a08 100644 --- a/docs/io/dapr/v1/class-use/CommonProtos.html +++ b/docs/io/dapr/v1/class-use/CommonProtos.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.CommonProtos (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.CommonProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.CommonProtos

    +

    Uses of Class
    io.dapr.v1.CommonProtos

    -No usage of io.dapr.v1.CommonProtos
    +
    No usage of io.dapr.v1.CommonProtos
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.Builder.html index 7855e3a1d..f184198ae 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.Builder.html @@ -2,195 +2,348 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.html index d477dcd92..23e86088c 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequest.html @@ -2,205 +2,366 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html index 16b97b031..82bd7948c 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.BindingEventRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html index da270caf5..22c4aa839 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency.html @@ -2,154 +2,283 @@ - -Uses of Enum Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.BindingEventConcurrency

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.Builder.html index 086b2e7b2..8197a221b 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.Builder.html @@ -2,283 +2,462 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.html index 2f602f8b3..01937b0a3 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponse.html @@ -2,211 +2,376 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html index e8f2c6eea..bddadb340 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BindingEventResponseOrBuilder.html @@ -2,101 +2,206 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.BindingEventResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html new file mode 100644 index 000000000..51ad3cbe2 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.Builder.html @@ -0,0 +1,353 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.html new file mode 100644 index 000000000..55a4d7750 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfig.html @@ -0,0 +1,360 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfig

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html new file mode 100644 index 000000000..6b2c31d81 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder.html @@ -0,0 +1,239 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.BulkSubscribeConfigOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.Builder.html index 5bc6f4977..5d3696360 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.Builder.html @@ -2,143 +2,278 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.html index 4ddc7f514..0671ba722 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html index b50b0525d..2afcd661f 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.HealthCheckResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.HealthCheckResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html index daa47a922..3c720779d 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.Builder.html @@ -2,174 +2,319 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.html index 2228014b4..821aad410 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html index b78003d16..210719eb7 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.ListInputBindingsResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html index 91cfad0ca..339368eb6 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder.html @@ -2,201 +2,354 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html index 824289b33..dcfef7962 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html index 217796a7e..946dd82ca 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.ListTopicSubscriptionsResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html new file mode 100644 index 000000000..02613d30f --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.Builder.html @@ -0,0 +1,505 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.html new file mode 100644 index 000000000..788dc4e06 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html new file mode 100644 index 000000000..d79b7cda1 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder.html @@ -0,0 +1,482 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html new file mode 100644 index 000000000..8eacd764b --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase.html @@ -0,0 +1,231 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry.EventCase

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html new file mode 100644 index 000000000..a68f59b41 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntry.html @@ -0,0 +1,412 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html new file mode 100644 index 000000000..4afbc5924 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder.html @@ -0,0 +1,273 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html new file mode 100644 index 000000000..866486abc --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html new file mode 100644 index 000000000..c9fc44d4a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.Builder.html @@ -0,0 +1,355 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.html new file mode 100644 index 000000000..08881e8ea --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html new file mode 100644 index 000000000..afb618551 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder.html @@ -0,0 +1,405 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html new file mode 100644 index 000000000..eb2f79d68 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntry.html @@ -0,0 +1,412 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html new file mode 100644 index 000000000..9ceb2b863 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder.html @@ -0,0 +1,275 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseEntryOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html new file mode 100644 index 000000000..3a343ea6b --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventBulkResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.Builder.html new file mode 100644 index 000000000..9cf29586a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.Builder.html @@ -0,0 +1,471 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.html new file mode 100644 index 000000000..be8b9058a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequest.html @@ -0,0 +1,355 @@ + + + + + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html new file mode 100644 index 000000000..e2c13c26d --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventCERequestOrBuilder.html @@ -0,0 +1,236 @@ + + + + + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventCERequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.Builder.html index f9ce66ded..7357bb403 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.Builder.html @@ -2,299 +2,518 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.html index c5aa69df4..761fbc559 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html index 7969c8817..af660246c 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventRequestOrBuilder.html @@ -2,101 +2,206 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.Builder.html index 463202764..fa30eb227 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.Builder.html @@ -2,161 +2,302 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html index c1279c3bc..81623fad0 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus.html @@ -2,150 +2,311 @@ - -Uses of Enum Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse.TopicEventResponseStatus

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.html index 62c7456d2..dd9b7fd99 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html index 474defb2a..b05ee0bfe 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicEventResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicEventResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.Builder.html index 703f1378c..50873ea43 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.Builder.html @@ -2,237 +2,404 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.html index 7c7d10aee..e8a00546d 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutes.html @@ -2,198 +2,359 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRoutes (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutes

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutesOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutesOrBuilder.html index 989eac6d4..38970ab77 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutesOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRoutesOrBuilder.html @@ -2,121 +2,236 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicRoutesOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.Builder.html index 2d3191a70..1975c5cc6 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.Builder.html @@ -2,235 +2,404 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRule.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.html index deeb694d8..7aff0d1ce 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRule.html @@ -2,236 +2,411 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRule (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicRule (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRule

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicRule

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRuleOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRuleOrBuilder.html index 004945989..888700c68 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRuleOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicRuleOrBuilder.html @@ -2,145 +2,270 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicRuleOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.Builder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.Builder.html index 6352f3a1f..d6d4dd997 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.Builder.html @@ -2,299 +2,522 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscription.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.html index c976542bd..5e50216c9 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscription.html @@ -2,236 +2,411 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos.TopicSubscription (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscription

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscription

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html index d9f417a73..e81ac8c96 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.TopicSubscriptionOrBuilder.html @@ -2,147 +2,272 @@ - -Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprAppCallbackProtos.TopicSubscriptionOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.html b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.html index 5dad16cc2..3c612c3d5 100644 --- a/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.html +++ b/docs/io/dapr/v1/class-use/DaprAppCallbackProtos.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.DaprAppCallbackProtos (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprAppCallbackProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos

    +

    Uses of Class
    io.dapr.v1.DaprAppCallbackProtos

    -No usage of io.dapr.v1.DaprAppCallbackProtos
    +
    No usage of io.dapr.v1.DaprAppCallbackProtos
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprGrpc.DaprBlockingStub.html b/docs/io/dapr/v1/class-use/DaprGrpc.DaprBlockingStub.html index 83646e9b6..edd665e34 100644 --- a/docs/io/dapr/v1/class-use/DaprGrpc.DaprBlockingStub.html +++ b/docs/io/dapr/v1/class-use/DaprGrpc.DaprBlockingStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.DaprGrpc.DaprBlockingStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprGrpc.DaprBlockingStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprBlockingStub

    -
    -
    Packages that use DaprGrpc.DaprBlockingStub
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprBlockingStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprGrpc.DaprFutureStub.html b/docs/io/dapr/v1/class-use/DaprGrpc.DaprFutureStub.html index 7c6975bee..f675c1dcf 100644 --- a/docs/io/dapr/v1/class-use/DaprGrpc.DaprFutureStub.html +++ b/docs/io/dapr/v1/class-use/DaprGrpc.DaprFutureStub.html @@ -2,96 +2,201 @@ - -Uses of Class io.dapr.v1.DaprGrpc.DaprFutureStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprGrpc.DaprFutureStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprFutureStub

    -
    -
    Packages that use DaprGrpc.DaprFutureStub
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprFutureStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprGrpc.DaprImplBase.html b/docs/io/dapr/v1/class-use/DaprGrpc.DaprImplBase.html index cffd455d8..cf234cb3a 100644 --- a/docs/io/dapr/v1/class-use/DaprGrpc.DaprImplBase.html +++ b/docs/io/dapr/v1/class-use/DaprGrpc.DaprImplBase.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.DaprGrpc.DaprImplBase (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprGrpc.DaprImplBase (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprImplBase

    +

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprImplBase

    -No usage of io.dapr.v1.DaprGrpc.DaprImplBase
    +
    No usage of io.dapr.v1.DaprGrpc.DaprImplBase
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprGrpc.DaprStub.html b/docs/io/dapr/v1/class-use/DaprGrpc.DaprStub.html index 598ed158e..86960eecc 100644 --- a/docs/io/dapr/v1/class-use/DaprGrpc.DaprStub.html +++ b/docs/io/dapr/v1/class-use/DaprGrpc.DaprStub.html @@ -2,127 +2,248 @@ - -Uses of Class io.dapr.v1.DaprGrpc.DaprStub (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprGrpc.DaprStub (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprStub

    -
    -
    Packages that use DaprGrpc.DaprStub
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprGrpc.DaprStub

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprGrpc.html b/docs/io/dapr/v1/class-use/DaprGrpc.html index fc8e000f6..5e32748d3 100644 --- a/docs/io/dapr/v1/class-use/DaprGrpc.html +++ b/docs/io/dapr/v1/class-use/DaprGrpc.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.DaprGrpc (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprGrpc (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprGrpc

    +

    Uses of Class
    io.dapr.v1.DaprGrpc

    -No usage of io.dapr.v1.DaprGrpc
    +
    No usage of io.dapr.v1.DaprGrpc
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.Builder.html index e949fe0c4..379d96e26 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.Builder.html @@ -2,217 +2,384 @@ - -Uses of Class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ActiveActorsCount.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ActiveActorsCount.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ActiveActorsCount.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.html b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.html index 5fcba7bfc..ba8f1f4b6 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCount.html @@ -2,226 +2,401 @@ - -Uses of Class io.dapr.v1.DaprProtos.ActiveActorsCount (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ActiveActorsCount (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ActiveActorsCount

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ActiveActorsCount

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCountOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCountOrBuilder.html index 68c2868be..edead50e3 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCountOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ActiveActorsCountOrBuilder.html @@ -2,139 +2,264 @@ - -Uses of Interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.ActiveActorsCountOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.Builder.html new file mode 100644 index 000000000..9011eecd1 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.Builder.html @@ -0,0 +1,433 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.html new file mode 100644 index 000000000..1b3a131a2 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.Builder.html new file mode 100644 index 000000000..e86bc405a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.Builder.html @@ -0,0 +1,451 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishRequestEntry.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.html new file mode 100644 index 000000000..7f056673a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntry.html @@ -0,0 +1,412 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishRequestEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishRequestEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntryOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntryOrBuilder.html new file mode 100644 index 000000000..5eced6e56 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestEntryOrBuilder.html @@ -0,0 +1,273 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkPublishRequestEntryOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestOrBuilder.html new file mode 100644 index 000000000..83c10f54e --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkPublishRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.Builder.html new file mode 100644 index 000000000..9b71a8d0f --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.Builder.html @@ -0,0 +1,355 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.html new file mode 100644 index 000000000..bdd3a2b00 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.Builder.html new file mode 100644 index 000000000..bf6de70eb --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.Builder.html @@ -0,0 +1,405 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.html new file mode 100644 index 000000000..4bb7bad34 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntry.html @@ -0,0 +1,412 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntry

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html new file mode 100644 index 000000000..f8abc8432 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseFailedEntryOrBuilder.html @@ -0,0 +1,273 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkPublishResponseFailedEntryOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseOrBuilder.html new file mode 100644 index 000000000..0131dfeca --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkPublishResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkPublishResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.Builder.html index cc81bcaa4..8594c75fc 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.Builder.html @@ -2,287 +2,474 @@ - -Uses of Class io.dapr.v1.DaprProtos.BulkStateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.BulkStateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.BulkStateItem.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkStateItem.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.html index 2587f1c17..efb58273c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItem.html @@ -2,236 +2,411 @@ - -Uses of Class io.dapr.v1.DaprProtos.BulkStateItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.BulkStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.BulkStateItem

    -
    -
    Packages that use DaprProtos.BulkStateItem
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.BulkStateItem

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItemOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItemOrBuilder.html index 6194d4cc0..82bf97d0a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItemOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.BulkStateItemOrBuilder.html @@ -2,147 +2,272 @@ - -Uses of Interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.BulkStateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkStateItemOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.BulkStateItemOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html index 09ca53f6f..bfe940d49 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html @@ -2,219 +2,378 @@ - -Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.html index 900551ed6..a7356cc00 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteBulkStateRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequestOrBuilder.html index 5adbba3b2..fa85a25f9 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.DeleteBulkStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.Builder.html index 6611702a3..33cf60cf7 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.Builder.html @@ -2,253 +2,424 @@ - -Uses of Class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.DeleteStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteStateRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteStateRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.html index 029994e06..f13bb856c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.DeleteStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.DeleteStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.DeleteStateRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequestOrBuilder.html index d9661a678..224f161c0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.DeleteStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html index ef9c82c0e..eb6668127 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html @@ -2,222 +2,387 @@ - -Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.html index f82a470cc..d7fbe7e8d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html index d2280d730..7f05142fa 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.Builder.html index fb5037524..cf009d5af 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.Builder.html @@ -2,241 +2,408 @@ - -Uses of Class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.html index aaad1ea84..7b616b0e3 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html index 5369efe6c..235323675 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteStateTransactionRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.ExecuteStateTransactionRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.Builder.html index 3f836da7f..b5e274da6 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.Builder.html @@ -2,188 +2,341 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetActorStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.html index 453b30607..9f44e0582 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetActorStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetActorStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequestOrBuilder.html index 501a8d802..62c92b42e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetActorStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.Builder.html index 2fdf49c5e..d6dee0783 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.Builder.html @@ -2,153 +2,292 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetActorStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.html index 990c32d65..04100f2a6 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetActorStateResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetActorStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetActorStateResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponseOrBuilder.html index 4a616eeac..e3ace5ec3 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetActorStateResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetActorStateResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.Builder.html index 95cac4ec3..f9c88434e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.Builder.html @@ -2,183 +2,332 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.html index 045906696..7b36c3d07 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequestOrBuilder.html index 0a5dd86f1..9c7aa2f52 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkSecretRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.Builder.html index 03c989a84..df571383c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.Builder.html @@ -2,165 +2,308 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.html index b71755949..cd605c11c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkSecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkSecretResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponseOrBuilder.html index 5dda50c70..42c0cb7e1 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkSecretResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkSecretResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.Builder.html index 3575d7f8e..4e27c817e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.Builder.html @@ -2,226 +2,389 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.html index 2a3038858..893a5f7e0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequestOrBuilder.html index ec247bf32..34ecd9e77 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.Builder.html index f74e8b6b4..27fd4bfa2 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.Builder.html @@ -2,201 +2,354 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateResponse.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.html index afb8b1fed..5c3638e36 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetBulkStateResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetBulkStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetBulkStateResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponseOrBuilder.html index d17e8b640..2524d4049 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetBulkStateResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetBulkStateResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.Builder.html index ae900577c..f3d3894d5 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.Builder.html @@ -2,214 +2,373 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.html index 0d37fc91e..78a3da8c0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequestOrBuilder.html index 4a963c0ab..60bf3a829 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetConfigurationRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.Builder.html index bb29c8ae1..573d8668b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.Builder.html @@ -2,162 +2,305 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.html index b1178b2ce..2d433fd5b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetConfigurationResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponseOrBuilder.html index 47c37b8b1..a05cc8922 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetConfigurationResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetConfigurationResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.Builder.html index be0ad73ad..6ac6495c1 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.Builder.html @@ -2,275 +2,527 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetMetadataResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetMetadataResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.html index c890a0042..81e676688 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetMetadataResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetMetadataResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetMetadataResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetMetadataResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponseOrBuilder.html index 21b49c9de..70883fac4 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetMetadataResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetMetadataResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.Builder.html index 2db1c233d..3f086388c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.Builder.html @@ -2,201 +2,356 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetSecretRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetSecretRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.html index cf50914e8..19fbf35c3 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetSecretRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetSecretRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretRequest

    -
    -
    Packages that use DaprProtos.GetSecretRequest
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequestOrBuilder.html index b2b293992..d18d8861a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetSecretRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.Builder.html index 44d21f3f9..466893803 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.Builder.html @@ -2,165 +2,308 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetSecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetSecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.html index e21818560..df4549f88 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetSecretResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetSecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetSecretResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponseOrBuilder.html index c448d07b0..a78fae089 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetSecretResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetSecretResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.Builder.html index f68480810..ccd196b48 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.Builder.html @@ -2,219 +2,380 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.html index 468483599..efe935a70 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateRequest

    -
    -
    Packages that use DaprProtos.GetStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequestOrBuilder.html index a5380d727..a43149a0a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.Builder.html index 9d03cdacb..3e027ca7a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.Builder.html @@ -2,195 +2,348 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateResponse.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateResponse.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.html index 44e49c9d5..e8897e8c9 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.GetStateResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.GetStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetStateResponse

    -
    Packages that use DaprProtos.GetStateResponse
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponseOrBuilder.html index 26ab33f8c..d2acc072e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetStateResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.GetStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.GetStateResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetStateResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.Builder.html new file mode 100644 index 000000000..b12d60ad6 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.Builder.html @@ -0,0 +1,342 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.html new file mode 100644 index 000000000..e0b289098 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.GetWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..a1d6da3b6 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowRequestOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.Builder.html new file mode 100644 index 000000000..48265973e --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.Builder.html @@ -0,0 +1,341 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetWorkflowResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.html new file mode 100644 index 000000000..e99950031 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.GetWorkflowResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.GetWorkflowResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponseOrBuilder.html new file mode 100644 index 000000000..56ffcdede --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.GetWorkflowResponseOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.GetWorkflowResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.Builder.html index 08c67794f..60745eed7 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.Builder.html @@ -2,217 +2,382 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeActorRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.html index 56dca9fa1..fa05c8729 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeActorRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeActorRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequestOrBuilder.html index 55a40406a..5cbd8a50c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeActorRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.Builder.html index 19f019b53..a2e3cea15 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.Builder.html @@ -2,153 +2,292 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeActorResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.html index dd0cdde77..651d6f124 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeActorResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeActorResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeActorResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponseOrBuilder.html index 73ce53906..cc047caaa 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeActorResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeActorResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.Builder.html index c47ec9aa4..ac85ac745 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.Builder.html @@ -2,222 +2,378 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.html index 738821353..1b1d862b8 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeBindingRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeBindingRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequestOrBuilder.html index f0ffcfac4..bf0d3f331 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeBindingRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.Builder.html index c51fbeaa6..0e2992d12 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.Builder.html @@ -2,177 +2,324 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.html index 5a5d29d08..8eef472c7 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeBindingResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeBindingResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeBindingResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponseOrBuilder.html index bb6f81a59..5ac7e142d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeBindingResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeBindingResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.Builder.html index a67918890..76aad6540 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.Builder.html @@ -2,185 +2,334 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeServiceRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.html index cefdea686..94b181894 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.InvokeServiceRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.InvokeServiceRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.InvokeServiceRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequestOrBuilder.html index 6e3ca1c83..f517339b7 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.InvokeServiceRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.InvokeServiceRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html index 568964187..c0939572a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html @@ -2,237 +2,402 @@ - -Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.PublishEventRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PublishEventRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.html index dffe8ec70..9e8ef8a1b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.PublishEventRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequestOrBuilder.html index 1de221270..03a096694 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PublishEventRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.Builder.html new file mode 100644 index 000000000..32a8a3207 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.Builder.html @@ -0,0 +1,468 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscription.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscription.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.html new file mode 100644 index 000000000..e050b901d --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscription.html @@ -0,0 +1,402 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscription (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscription

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionOrBuilder.html new file mode 100644 index 000000000..149b067aa --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionOrBuilder.html @@ -0,0 +1,265 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PubsubSubscriptionOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.Builder.html new file mode 100644 index 000000000..1383280d8 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.Builder.html @@ -0,0 +1,392 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscriptionRule.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.html new file mode 100644 index 000000000..0c778ea63 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRule.html @@ -0,0 +1,402 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscriptionRule (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscriptionRule

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRuleOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRuleOrBuilder.html new file mode 100644 index 000000000..27e536973 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRuleOrBuilder.html @@ -0,0 +1,265 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PubsubSubscriptionRuleOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.Builder.html new file mode 100644 index 000000000..fc40d23a2 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.Builder.html @@ -0,0 +1,370 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscriptionRules.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.html new file mode 100644 index 000000000..3c07a26e3 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRules.html @@ -0,0 +1,355 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PubsubSubscriptionRules (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PubsubSubscriptionRules

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRulesOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRulesOrBuilder.html new file mode 100644 index 000000000..b0a428797 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PubsubSubscriptionRulesOrBuilder.html @@ -0,0 +1,234 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PubsubSubscriptionRulesOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html index eb6f8d0a9..857114fb0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html @@ -2,265 +2,444 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateItem.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateItem.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.html index d975c46ad..177ec1b99 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.html @@ -2,236 +2,411 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateItem (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateItem (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateItem

    -
    -
    Packages that use DaprProtos.QueryStateItem
    -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateItem

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItemOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItemOrBuilder.html index 9dd072128..af159f3f0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItemOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItemOrBuilder.html @@ -2,145 +2,270 @@ - -Uses of Interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.QueryStateItemOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateItemOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateItemOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.Builder.html index b9d51c174..abde4070f 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.Builder.html @@ -2,201 +2,356 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.html index 875f965ba..93a25fe73 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequestOrBuilder.html index 62cff884d..587ac7214 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.Builder.html index b449d6e05..b53bb03ff 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.Builder.html @@ -2,241 +2,408 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.html index fbaf673ff..251ff0f7d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.QueryStateResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.QueryStateResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponseOrBuilder.html index 64cfb0524..02905d315 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.QueryStateResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.Builder.html index 58ae257db..203d9eb86 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.Builder.html @@ -2,243 +2,418 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorReminderRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.html index ea61935d9..a7df2b045 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisterActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisterActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorReminderRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequestOrBuilder.html index 70d5b8218..8225fcee4 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorReminderRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisterActorReminderRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.Builder.html index bc830a28d..e12a166df 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.Builder.html @@ -2,258 +2,439 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorTimerRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.html index 64f55093f..b4c15db15 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisterActorTimerRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisterActorTimerRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisterActorTimerRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequestOrBuilder.html index 5db7edd6d..0ca4367a1 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisterActorTimerRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisterActorTimerRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.Builder.html index 498e2c021..b0aa65fc1 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.Builder.html @@ -2,263 +2,448 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisteredComponents.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisteredComponents.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisteredComponents.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.RegisteredComponents.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.html index fc0ca7341..d55a432a8 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponents.html @@ -2,226 +2,401 @@ - -Uses of Class io.dapr.v1.DaprProtos.RegisteredComponents (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RegisteredComponents (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RegisteredComponents

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.RegisteredComponents

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponentsOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponentsOrBuilder.html index 8f598c9ef..fe00d6721 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponentsOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RegisteredComponentsOrBuilder.html @@ -2,139 +2,264 @@ - -Uses of Interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.RegisteredComponentsOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.Builder.html index 6af5df860..b82b29057 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.Builder.html @@ -2,203 +2,362 @@ - -Uses of Class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.RenameActorReminderRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.html index 0aa52c4e2..8af4fda09 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.RenameActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.RenameActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.RenameActorReminderRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequestOrBuilder.html index 3aad2d559..3fe198372 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RenameActorReminderRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.RenameActorReminderRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html index 546b5c720..dd49a158b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html @@ -2,219 +2,378 @@ - -Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SaveStateRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SaveStateRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.html index fd95c83d0..74fc54c2c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SaveStateRequest

    -
    -
    Packages that use DaprProtos.SaveStateRequest
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequestOrBuilder.html index 18da91c36..f2efddddc 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SaveStateRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.Builder.html index e6969acf5..27ac17583 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.Builder.html @@ -2,162 +2,305 @@ - -Uses of Class io.dapr.v1.DaprProtos.SecretResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SecretResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SecretResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SecretResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.html index 3d6a03ebe..a8da0c4e4 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponse.html @@ -2,285 +2,476 @@ - -Uses of Class io.dapr.v1.DaprProtos.SecretResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SecretResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SecretResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.SecretResponse

    -
    Packages that use DaprProtos.SecretResponse
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponseOrBuilder.html index 5a845203f..494218ad1 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SecretResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SecretResponseOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.SecretResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.SecretResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SecretResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.Builder.html index f7ef8a9c0..5c3e00377 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.Builder.html @@ -2,173 +2,320 @@ - -Uses of Class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SetMetadataRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SetMetadataRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SetMetadataRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.html index 89ad617c1..bcbdda0ce 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.SetMetadataRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SetMetadataRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SetMetadataRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequestOrBuilder.html index a8d8d2227..1a3aeac8e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SetMetadataRequestOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SetMetadataRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.Builder.html new file mode 100644 index 000000000..40089940a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.Builder.html @@ -0,0 +1,383 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.StartWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.html new file mode 100644 index 000000000..6c6922a4c --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.StartWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.StartWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..815c03fcc --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowRequestOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.StartWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html index 1bc99bd2f..28aa8b5e5 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html @@ -2,214 +2,373 @@ - -Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.html index b8d6aeda7..3ad33c932 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.html @@ -2,191 +2,350 @@ - -Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequestOrBuilder.html index 519a1dbed..092643815 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubscribeConfigurationRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.Builder.html index 91a368cad..6ca750d85 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.Builder.html @@ -2,183 +2,332 @@ - -Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.html index 62899b3c5..bc12839a3 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponse.html @@ -2,197 +2,360 @@ - -Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponse

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponseOrBuilder.html index 04ee47154..960c0a311 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationResponseOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubscribeConfigurationResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html new file mode 100644 index 000000000..01604b9b0 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html @@ -0,0 +1,321 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.html new file mode 100644 index 000000000..a902a951f --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TerminateWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..549d20622 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequestOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TerminateWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.Builder.html new file mode 100644 index 000000000..0f669431d --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.Builder.html @@ -0,0 +1,279 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html new file mode 100644 index 000000000..6c7572e00 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowResponse (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TerminateWorkflowResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponseOrBuilder.html new file mode 100644 index 000000000..7334b5547 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponseOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.TerminateWorkflowResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TerminateWorkflowResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html index 8e178809b..e0417801c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html @@ -2,242 +2,419 @@ - -Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.html index 200c06366..d4240fc28 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.html @@ -2,226 +2,401 @@ - -Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalActorStateOperation

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperationOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperationOrBuilder.html index b4927eebb..2a0808264 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperationOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperationOrBuilder.html @@ -2,141 +2,266 @@ - -Uses of Interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TransactionalActorStateOperationOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.Builder.html index 6a515979f..f12be9fde 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.Builder.html @@ -2,241 +2,412 @@ - -Uses of Class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalStateOperation.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.html index 2e58058fa..582fded1c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperation.html @@ -2,236 +2,411 @@ - -Uses of Class io.dapr.v1.DaprProtos.TransactionalStateOperation (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TransactionalStateOperation (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalStateOperation

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TransactionalStateOperation

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperationOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperationOrBuilder.html index 16873b927..8f750278b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperationOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalStateOperationOrBuilder.html @@ -2,147 +2,272 @@ - -Uses of Interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder

    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TransactionalStateOperationOrBuilder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.Builder.html index 7c3ff3e35..efd8bfe1a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.Builder.html @@ -2,209 +2,366 @@ - -Uses of Class io.dapr.v1.DaprProtos.TryLockRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TryLockRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.html index e46d8cef3..3c7805f07 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.TryLockRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TryLockRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockRequest

    -
    -
    Packages that use DaprProtos.TryLockRequest
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequestOrBuilder.html index 19e89288d..363f65477 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockRequestOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.TryLockRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.TryLockRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TryLockRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.Builder.html index c8204e7bf..25130240b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.Builder.html @@ -2,153 +2,292 @@ - -Uses of Class io.dapr.v1.DaprProtos.TryLockResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TryLockResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.html index cf3a3792a..7fa2380af 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.TryLockResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.TryLockResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.TryLockResponse

    -
    Packages that use DaprProtos.TryLockResponse
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponseOrBuilder.html index 7dcf742fd..e5c0b64a8 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TryLockResponseOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.TryLockResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.TryLockResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.TryLockResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.TryLockResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.Builder.html index a3dc5bade..5c23b015a 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.Builder.html @@ -2,191 +2,344 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnlockRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnlockRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.html index ad047d371..4d7389a1b 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnlockRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnlockRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockRequest

    -
    -
    Packages that use DaprProtos.UnlockRequest
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequestOrBuilder.html index 3684e5270..7ba1a752e 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockRequestOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnlockRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnlockRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnlockRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Builder.html index 3e6e5659b..38191b643 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Builder.html @@ -2,158 +2,299 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnlockResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnlockResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Status.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Status.html index 3f6cac503..7975ae69f 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Status.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.Status.html @@ -2,146 +2,275 @@ - -Uses of Enum Class io.dapr.v1.DaprProtos.UnlockResponse.Status (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnlockResponse.Status (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Enum Class
    io.dapr.v1.DaprProtos.UnlockResponse.Status

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockResponse.Status

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.html index ce25d3602..7a4aab59d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnlockResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnlockResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnlockResponse

    -
    Packages that use DaprProtos.UnlockResponse
    -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponseOrBuilder.html index a3d4aeb19..6fbae87e7 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnlockResponseOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnlockResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnlockResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnlockResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.Builder.html index cc67047bc..cc1c7a9ae 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.Builder.html @@ -2,188 +2,341 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.html index d59ed50bc..c4e3a4338 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnregisterActorReminderRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequestOrBuilder.html index dd494c6cc..045778973 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorReminderRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnregisterActorReminderRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.Builder.html index 52900e91d..ac2d29674 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.Builder.html @@ -2,188 +2,341 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequest.Builder

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.html index 7b4f57eb6..9386852dd 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnregisterActorTimerRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequestOrBuilder.html index a0c4e19b2..eac9b262d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnregisterActorTimerRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnregisterActorTimerRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.Builder.html index a839196c7..c403f70a9 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.Builder.html @@ -2,179 +2,326 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.html index 795d358a0..a55b2b439 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequest.html @@ -2,197 +2,358 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequest

    -
    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html index 81364e363..ec8750520 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationRequestOrBuilder.html @@ -2,99 +2,204 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationRequestOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.Builder.html index a206b5c75..a1805fab0 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.Builder.html @@ -2,168 +2,313 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse.Builder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.html index de94dd06f..b2f324a88 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponse.html @@ -2,203 +2,368 @@ - -Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse

    +

    Uses of Class
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponse

    - -
    -
    Package
    -
    Description
    - -
     
    -
    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html index 6cd6587d2..28bb0cc49 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.UnsubscribeConfigurationResponseOrBuilder.html @@ -2,97 +2,202 @@ - -Uses of Interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.7.1 API) - + +Uses of Interface io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Interface
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder

    -
    - -
    -
    Package
    -
    Description
    - -
     
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.UnsubscribeConfigurationResponseOrBuilder

    -
    - +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.Builder.html new file mode 100644 index 000000000..5ffe7ab64 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.Builder.html @@ -0,0 +1,300 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.WorkflowReference.Builder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.WorkflowReference.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html new file mode 100644 index 000000000..4846a94fe --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.WorkflowReference (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.WorkflowReference

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReferenceOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReferenceOrBuilder.html new file mode 100644 index 000000000..b3845c77a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReferenceOrBuilder.html @@ -0,0 +1,203 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.WorkflowReferenceOrBuilder (dapr-sdk-parent 1.8.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.WorkflowReferenceOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.html b/docs/io/dapr/v1/class-use/DaprProtos.html index b4fff0e51..71b9fdc48 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.html @@ -2,65 +2,149 @@ - -Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.7.1 API) - + +Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -
    -

    Uses of Class
    io.dapr.v1.DaprProtos

    +

    Uses of Class
    io.dapr.v1.DaprProtos

    -No usage of io.dapr.v1.DaprProtos
    +
    No usage of io.dapr.v1.DaprProtos
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/package-summary.html b/docs/io/dapr/v1/package-summary.html index b38b8ddef..89238a2f9 100644 --- a/docs/io/dapr/v1/package-summary.html +++ b/docs/io/dapr/v1/package-summary.html @@ -2,35 +2,52 @@ - -io.dapr.v1 (dapr-sdk-parent 1.7.1 API) - + +io.dapr.v1 (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Package io.dapr.v1

    -
    -
    package io.dapr.v1
    -
    -
    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/package-tree.html b/docs/io/dapr/v1/package-tree.html index 47575cf9d..28673a244 100644 --- a/docs/io/dapr/v1/package-tree.html +++ b/docs/io/dapr/v1/package-tree.html @@ -2,138 +2,201 @@ - -io.dapr.v1 Class Hierarchy (dapr-sdk-parent 1.7.1 API) - + +io.dapr.v1 Class Hierarchy (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + + + + + -

    Hierarchy For Package io.dapr.v1

    -Package Hierarchies: +Package Hierarchies:
    -
    +
    +

    Class Hierarchy

    -
    +

    Interface Hierarchy

    -
    -

    Enum Class Hierarchy

    +
    +

    Enum Hierarchy

    +
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/io/dapr/v1/package-use.html b/docs/io/dapr/v1/package-use.html index b7671bca9..dabe73453 100644 --- a/docs/io/dapr/v1/package-use.html +++ b/docs/io/dapr/v1/package-use.html @@ -2,932 +2,1821 @@ - -Uses of Package io.dapr.v1 (dapr-sdk-parent 1.7.1 API) - + +Uses of Package io.dapr.v1 (dapr-sdk-parent 1.8.0 API) - - - + - + - - + + + + + - - -
    -
    + +
    + + + -

    Uses of Package
    io.dapr.v1

    -
    Packages that use io.dapr.v1
    -
    -
    Package
    -
    Description
    - -
     
    - -
     
    -
    -
    -
    -
    - -
    + +

    Copyright © 2023. All rights reserved.

    + diff --git a/docs/jquery-ui.overrides.css b/docs/jquery-ui.overrides.css index 1abff9522..facf852c2 100644 --- a/docs/jquery-ui.overrides.css +++ b/docs/jquery-ui.overrides.css @@ -1,26 +1,26 @@ /* - * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. - * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. */ .ui-state-active, @@ -31,4 +31,5 @@ a.ui-button:active, .ui-button.ui-state-active:hover { /* Overrides the color of selection used in jQuery UI */ background: #F8981D; + border: 1px solid #F8981D; } diff --git a/docs/jquery/external/jquery/jquery.js b/docs/jquery/external/jquery/jquery.js new file mode 100644 index 000000000..50937333b --- /dev/null +++ b/docs/jquery/external/jquery/jquery.js @@ -0,0 +1,10872 @@ +/*! + * jQuery JavaScript Library v3.5.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2020-05-04T22:49Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "\r\n"; + +// inject VBScript +document.write(IEBinaryToArray_ByteStr_Script); + +global.JSZipUtils._getBinaryFromXHR = function (xhr) { + var binary = xhr.responseBody; + var byteMapping = {}; + for ( var i = 0; i < 256; i++ ) { + for ( var j = 0; j < 256; j++ ) { + byteMapping[ String.fromCharCode( i + (j << 8) ) ] = + String.fromCharCode(i) + String.fromCharCode(j); + } + } + var rawBytes = IEBinaryToArray_ByteStr(binary); + var lastChr = IEBinaryToArray_ByteStr_Last(binary); + return rawBytes.replace(/[\s\S]/g, function( match ) { + return byteMapping[match]; + }) + lastChr; +}; + +// enforcing Stuk's coding style +// vim: set shiftwidth=4 softtabstop=4: + +},{}]},{},[1]) +; diff --git a/docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js new file mode 100644 index 000000000..93d8bc8ef --- /dev/null +++ b/docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js @@ -0,0 +1,10 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/docs/jquery/jszip-utils/dist/jszip-utils.js b/docs/jquery/jszip-utils/dist/jszip-utils.js new file mode 100644 index 000000000..775895ec9 --- /dev/null +++ b/docs/jquery/jszip-utils/dist/jszip-utils.js @@ -0,0 +1,118 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/master/LICENSE +*/ + +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; + enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; + + output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); + + } + + return output.join(""); +}; + +// public method for decoding +exports.decode = function(input) { + var chr1, chr2, chr3; + var enc1, enc2, enc3, enc4; + var i = 0, resultIndex = 0; + + var dataUrlPrefix = "data:"; + + if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { + // This is a common error: people give a data url + // (data:image/png;base64,iVBOR...) with a {base64: true} and + // wonders why things don't work. + // We can detect that the string input looks like a data url but we + // *can't* be sure it is one: removing everything up to the comma would + // be too dangerous. + throw new Error("Invalid base64 input, it looks like a data url."); + } + + input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); + + var totalLength = input.length * 3 / 4; + if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { + totalLength--; + } + if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { + totalLength--; + } + if (totalLength % 1 !== 0) { + // totalLength is not an integer, the length does not match a valid + // base64 content. That can happen if: + // - the input is not a base64 content + // - the input is *almost* a base64 content, with a extra chars at the + // beginning or at the end + // - the input uses a base64 variant (base64url for example) + throw new Error("Invalid base64 input, bad content length."); + } + var output; + if (support.uint8array) { + output = new Uint8Array(totalLength|0); + } else { + output = new Array(totalLength|0); + } + + while (i < input.length) { + + enc1 = _keyStr.indexOf(input.charAt(i++)); + enc2 = _keyStr.indexOf(input.charAt(i++)); + enc3 = _keyStr.indexOf(input.charAt(i++)); + enc4 = _keyStr.indexOf(input.charAt(i++)); + + chr1 = (enc1 << 2) | (enc2 >> 4); + chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); + chr3 = ((enc3 & 3) << 6) | enc4; + + output[resultIndex++] = chr1; + + if (enc3 !== 64) { + output[resultIndex++] = chr2; + } + if (enc4 !== 64) { + output[resultIndex++] = chr3; + } + + } + + return output; +}; + +},{"./support":30,"./utils":32}],2:[function(require,module,exports){ +'use strict'; + +var external = require("./external"); +var DataWorker = require('./stream/DataWorker'); +var Crc32Probe = require('./stream/Crc32Probe'); +var DataLengthProbe = require('./stream/DataLengthProbe'); + +/** + * Represent a compressed object, with everything needed to decompress it. + * @constructor + * @param {number} compressedSize the size of the data compressed. + * @param {number} uncompressedSize the size of the data after decompression. + * @param {number} crc32 the crc32 of the decompressed file. + * @param {object} compression the type of compression, see lib/compressions.js. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. + */ +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { + this.compressedSize = compressedSize; + this.uncompressedSize = uncompressedSize; + this.crc32 = crc32; + this.compression = compression; + this.compressedContent = data; +} + +CompressedObject.prototype = { + /** + * Create a worker to get the uncompressed content. + * @return {GenericWorker} the worker. + */ + getContentWorker: function () { + var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) + .pipe(this.compression.uncompressWorker()) + .pipe(new DataLengthProbe("data_length")); + + var that = this; + worker.on("end", function () { + if (this.streamInfo['data_length'] !== that.uncompressedSize) { + throw new Error("Bug : uncompressed data size mismatch"); + } + }); + return worker; + }, + /** + * Create a worker to get the compressed content. + * @return {GenericWorker} the worker. + */ + getCompressedWorker: function () { + return new DataWorker(external.Promise.resolve(this.compressedContent)) + .withStreamInfo("compressedSize", this.compressedSize) + .withStreamInfo("uncompressedSize", this.uncompressedSize) + .withStreamInfo("crc32", this.crc32) + .withStreamInfo("compression", this.compression) + ; + } +}; + +/** + * Chain the given worker with other workers to compress the content with the + * given compression. + * @param {GenericWorker} uncompressedWorker the worker to pipe. + * @param {Object} compression the compression object. + * @param {Object} compressionOptions the options to use when compressing. + * @return {GenericWorker} the new worker compressing the content. + */ +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { + return uncompressedWorker + .pipe(new Crc32Probe()) + .pipe(new DataLengthProbe("uncompressedSize")) + .pipe(compression.compressWorker(compressionOptions)) + .pipe(new DataLengthProbe("compressedSize")) + .withStreamInfo("compression", compression); +}; + +module.exports = CompressedObject; + +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require("./stream/GenericWorker"); + +exports.STORE = { + magic: "\x00\x00", + compressWorker : function (compressionOptions) { + return new GenericWorker("STORE compression"); + }, + uncompressWorker : function () { + return new GenericWorker("STORE decompression"); + } +}; +exports.DEFLATE = require('./flate'); + +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); + +/** + * The following functions come from pako, from pako/lib/zlib/crc32.js + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Use ordinary array, since untyped makes no boost here +function makeTable() { + var c, table = []; + + for(var n =0; n < 256; n++){ + c = n; + for(var k =0; k < 8; k++){ + c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; +} + +// Create table on load. Just 255 signed longs. Not a problem. +var crcTable = makeTable(); + + +function crc32(crc, buf, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +// That's all for the pako functions. + +/** + * Compute the crc32 of a string. + * This is almost the same as the function crc32, but for strings. Using the + * same function for the two use cases leads to horrible performances. + * @param {Number} crc the starting value of the crc. + * @param {String} str the string to use. + * @param {Number} len the length of the string. + * @param {Number} pos the starting position for the crc32 computation. + * @return {Number} the computed crc32. + */ +function crc32str(crc, str, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +module.exports = function crc32wrapper(input, crc) { + if (typeof input === "undefined" || !input.length) { + return 0; + } + + var isArray = utils.getTypeOf(input) !== "string"; + + if(isArray) { + return crc32(crc|0, input, input.length, 0); + } else { + return crc32str(crc|0, input, input.length, 0); + } +}; + +},{"./utils":32}],5:[function(require,module,exports){ +'use strict'; +exports.base64 = false; +exports.binary = false; +exports.dir = false; +exports.createFolders = true; +exports.date = null; +exports.compression = null; +exports.compressionOptions = null; +exports.comment = null; +exports.unixPermissions = null; +exports.dosPermissions = null; + +},{}],6:[function(require,module,exports){ +/* global Promise */ +'use strict'; + +// load the global object first: +// - it should be better integrated in the system (unhandledRejection in node) +// - the environment may have a custom Promise implementation (see zone.js) +var ES6Promise = null; +if (typeof Promise !== "undefined") { + ES6Promise = Promise; +} else { + ES6Promise = require("lie"); +} + +/** + * Let the user use/change some implementations. + */ +module.exports = { + Promise: ES6Promise +}; + +},{"lie":37}],7:[function(require,module,exports){ +'use strict'; +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); + +var pako = require("pako"); +var utils = require("./utils"); +var GenericWorker = require("./stream/GenericWorker"); + +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; + +exports.magic = "\x08\x00"; + +/** + * Create a worker that uses pako to inflate/deflate. + * @constructor + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". + * @param {Object} options the options to use when (de)compressing. + */ +function FlateWorker(action, options) { + GenericWorker.call(this, "FlateWorker/" + action); + + this._pako = null; + this._pakoAction = action; + this._pakoOptions = options; + // the `meta` object from the last chunk received + // this allow this worker to pass around metadata + this.meta = {}; +} + +utils.inherits(FlateWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +FlateWorker.prototype.processChunk = function (chunk) { + this.meta = chunk.meta; + if (this._pako === null) { + this._createPako(); + } + this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); +}; + +/** + * @see GenericWorker.flush + */ +FlateWorker.prototype.flush = function () { + GenericWorker.prototype.flush.call(this); + if (this._pako === null) { + this._createPako(); + } + this._pako.push([], true); +}; +/** + * @see GenericWorker.cleanUp + */ +FlateWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this._pako = null; +}; + +/** + * Create the _pako object. + * TODO: lazy-loading this object isn't the best solution but it's the + * quickest. The best solution is to lazy-load the worker list. See also the + * issue #446. + */ +FlateWorker.prototype._createPako = function () { + this._pako = new pako[this._pakoAction]({ + raw: true, + level: this._pakoOptions.level || -1 // default compression + }); + var self = this; + this._pako.onData = function(data) { + self.push({ + data : data, + meta : self.meta + }); + }; +}; + +exports.compressWorker = function (compressionOptions) { + return new FlateWorker("Deflate", compressionOptions); +}; +exports.uncompressWorker = function () { + return new FlateWorker("Inflate", {}); +}; + +},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); +var utf8 = require('../utf8'); +var crc32 = require('../crc32'); +var signature = require('../signature'); + +/** + * Transform an integer into a string in hexadecimal. + * @private + * @param {number} dec the number to convert. + * @param {number} bytes the number of bytes to generate. + * @returns {string} the result. + */ +var decToHex = function(dec, bytes) { + var hex = "", i; + for (i = 0; i < bytes; i++) { + hex += String.fromCharCode(dec & 0xff); + dec = dec >>> 8; + } + return hex; +}; + +/** + * Generate the UNIX part of the external file attributes. + * @param {Object} unixPermissions the unix permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : + * + * TTTTsstrwxrwxrwx0000000000ADVSHR + * ^^^^____________________________ file type, see zipinfo.c (UNX_*) + * ^^^_________________________ setuid, setgid, sticky + * ^^^^^^^^^________________ permissions + * ^^^^^^^^^^______ not used ? + * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only + */ +var generateUnixExternalFileAttr = function (unixPermissions, isDir) { + + var result = unixPermissions; + if (!unixPermissions) { + // I can't use octal values in strict mode, hence the hexa. + // 040775 => 0x41fd + // 0100664 => 0x81b4 + result = isDir ? 0x41fd : 0x81b4; + } + return (result & 0xFFFF) << 16; +}; + +/** + * Generate the DOS part of the external file attributes. + * @param {Object} dosPermissions the dos permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * Bit 0 Read-Only + * Bit 1 Hidden + * Bit 2 System + * Bit 3 Volume Label + * Bit 4 Directory + * Bit 5 Archive + */ +var generateDosExternalFileAttr = function (dosPermissions, isDir) { + + // the dir flag is already set for compatibility + return (dosPermissions || 0) & 0x3F; +}; + +/** + * Generate the various parts used in the construction of the final zip file. + * @param {Object} streamInfo the hash with information about the compressed file. + * @param {Boolean} streamedContent is the content streamed ? + * @param {Boolean} streamingEnded is the stream finished ? + * @param {number} offset the current offset from the start of the zip file. + * @param {String} platform let's pretend we are this platform (change platform dependents fields) + * @param {Function} encodeFileName the function to encode the file name / comment. + * @return {Object} the zip parts. + */ +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { + var file = streamInfo['file'], + compression = streamInfo['compression'], + useCustomEncoding = encodeFileName !== utf8.utf8encode, + encodedFileName = utils.transformTo("string", encodeFileName(file.name)), + utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), + comment = file.comment, + encodedComment = utils.transformTo("string", encodeFileName(comment)), + utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), + useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, + useUTF8ForComment = utfEncodedComment.length !== comment.length, + dosTime, + dosDate, + extraFields = "", + unicodePathExtraField = "", + unicodeCommentExtraField = "", + dir = file.dir, + date = file.date; + + + var dataInfo = { + crc32 : 0, + compressedSize : 0, + uncompressedSize : 0 + }; + + // if the content is streamed, the sizes/crc32 are only available AFTER + // the end of the stream. + if (!streamedContent || streamingEnded) { + dataInfo.crc32 = streamInfo['crc32']; + dataInfo.compressedSize = streamInfo['compressedSize']; + dataInfo.uncompressedSize = streamInfo['uncompressedSize']; + } + + var bitflag = 0; + if (streamedContent) { + // Bit 3: the sizes/crc32 are set to zero in the local header. + // The correct values are put in the data descriptor immediately + // following the compressed data. + bitflag |= 0x0008; + } + if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { + // Bit 11: Language encoding flag (EFS). + bitflag |= 0x0800; + } + + + var extFileAttr = 0; + var versionMadeBy = 0; + if (dir) { + // dos or unix, we set the dos dir flag + extFileAttr |= 0x00010; + } + if(platform === "UNIX") { + versionMadeBy = 0x031E; // UNIX, version 3.0 + extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); + } else { // DOS or other, fallback to DOS + versionMadeBy = 0x0014; // DOS, version 2.0 + extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); + } + + // date + // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html + + dosTime = date.getUTCHours(); + dosTime = dosTime << 6; + dosTime = dosTime | date.getUTCMinutes(); + dosTime = dosTime << 5; + dosTime = dosTime | date.getUTCSeconds() / 2; + + dosDate = date.getUTCFullYear() - 1980; + dosDate = dosDate << 4; + dosDate = dosDate | (date.getUTCMonth() + 1); + dosDate = dosDate << 5; + dosDate = dosDate | date.getUTCDate(); + + if (useUTF8ForFileName) { + // set the unicode path extra field. unzip needs at least one extra + // field to correctly handle unicode path, so using the path is as good + // as any other information. This could improve the situation with + // other archive managers too. + // This field is usually used without the utf8 flag, with a non + // unicode path in the header (winrar, winzip). This helps (a bit) + // with the messy Windows' default compressed folders feature but + // breaks on p7zip which doesn't seek the unicode path extra field. + // So for now, UTF-8 everywhere ! + unicodePathExtraField = + // Version + decToHex(1, 1) + + // NameCRC32 + decToHex(crc32(encodedFileName), 4) + + // UnicodeName + utfEncodedFileName; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x70" + + // size + decToHex(unicodePathExtraField.length, 2) + + // content + unicodePathExtraField; + } + + if(useUTF8ForComment) { + + unicodeCommentExtraField = + // Version + decToHex(1, 1) + + // CommentCRC32 + decToHex(crc32(encodedComment), 4) + + // UnicodeName + utfEncodedComment; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x63" + + // size + decToHex(unicodeCommentExtraField.length, 2) + + // content + unicodeCommentExtraField; + } + + var header = ""; + + // version needed to extract + header += "\x0A\x00"; + // general purpose bit flag + header += decToHex(bitflag, 2); + // compression method + header += compression.magic; + // last mod file time + header += decToHex(dosTime, 2); + // last mod file date + header += decToHex(dosDate, 2); + // crc-32 + header += decToHex(dataInfo.crc32, 4); + // compressed size + header += decToHex(dataInfo.compressedSize, 4); + // uncompressed size + header += decToHex(dataInfo.uncompressedSize, 4); + // file name length + header += decToHex(encodedFileName.length, 2); + // extra field length + header += decToHex(extraFields.length, 2); + + + var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; + + var dirRecord = signature.CENTRAL_FILE_HEADER + + // version made by (00: DOS) + decToHex(versionMadeBy, 2) + + // file header (common to file and central directory) + header + + // file comment length + decToHex(encodedComment.length, 2) + + // disk number start + "\x00\x00" + + // internal file attributes TODO + "\x00\x00" + + // external file attributes + decToHex(extFileAttr, 4) + + // relative offset of local header + decToHex(offset, 4) + + // file name + encodedFileName + + // extra field + extraFields + + // file comment + encodedComment; + + return { + fileRecord: fileRecord, + dirRecord: dirRecord + }; +}; + +/** + * Generate the EOCD record. + * @param {Number} entriesCount the number of entries in the zip file. + * @param {Number} centralDirLength the length (in bytes) of the central dir. + * @param {Number} localDirLength the length (in bytes) of the local dir. + * @param {String} comment the zip file comment as a binary string. + * @param {Function} encodeFileName the function to encode the comment. + * @return {String} the EOCD record. + */ +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { + var dirEnd = ""; + var encodedComment = utils.transformTo("string", encodeFileName(comment)); + + // end of central dir signature + dirEnd = signature.CENTRAL_DIRECTORY_END + + // number of this disk + "\x00\x00" + + // number of the disk with the start of the central directory + "\x00\x00" + + // total number of entries in the central directory on this disk + decToHex(entriesCount, 2) + + // total number of entries in the central directory + decToHex(entriesCount, 2) + + // size of the central directory 4 bytes + decToHex(centralDirLength, 4) + + // offset of start of central directory with respect to the starting disk number + decToHex(localDirLength, 4) + + // .ZIP file comment length + decToHex(encodedComment.length, 2) + + // .ZIP file comment + encodedComment; + + return dirEnd; +}; + +/** + * Generate data descriptors for a file entry. + * @param {Object} streamInfo the hash generated by a worker, containing information + * on the file entry. + * @return {String} the data descriptors. + */ +var generateDataDescriptors = function (streamInfo) { + var descriptor = ""; + descriptor = signature.DATA_DESCRIPTOR + + // crc-32 4 bytes + decToHex(streamInfo['crc32'], 4) + + // compressed size 4 bytes + decToHex(streamInfo['compressedSize'], 4) + + // uncompressed size 4 bytes + decToHex(streamInfo['uncompressedSize'], 4); + + return descriptor; +}; + + +/** + * A worker to concatenate other workers to create a zip file. + * @param {Boolean} streamFiles `true` to stream the content of the files, + * `false` to accumulate it. + * @param {String} comment the comment to use. + * @param {String} platform the platform to use, "UNIX" or "DOS". + * @param {Function} encodeFileName the function to encode file names and comments. + */ +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { + GenericWorker.call(this, "ZipFileWorker"); + // The number of bytes written so far. This doesn't count accumulated chunks. + this.bytesWritten = 0; + // The comment of the zip file + this.zipComment = comment; + // The platform "generating" the zip file. + this.zipPlatform = platform; + // the function to encode file names and comments. + this.encodeFileName = encodeFileName; + // Should we stream the content of the files ? + this.streamFiles = streamFiles; + // If `streamFiles` is false, we will need to accumulate the content of the + // files to calculate sizes / crc32 (and write them *before* the content). + // This boolean indicates if we are accumulating chunks (it will change a lot + // during the lifetime of this worker). + this.accumulate = false; + // The buffer receiving chunks when accumulating content. + this.contentBuffer = []; + // The list of generated directory records. + this.dirRecords = []; + // The offset (in bytes) from the beginning of the zip file for the current source. + this.currentSourceOffset = 0; + // The total number of entries in this zip file. + this.entriesCount = 0; + // the name of the file currently being added, null when handling the end of the zip file. + // Used for the emitted metadata. + this.currentFile = null; + + + + this._sources = []; +} +utils.inherits(ZipFileWorker, GenericWorker); + +/** + * @see GenericWorker.push + */ +ZipFileWorker.prototype.push = function (chunk) { + + var currentFilePercent = chunk.meta.percent || 0; + var entriesCount = this.entriesCount; + var remainingFiles = this._sources.length; + + if(this.accumulate) { + this.contentBuffer.push(chunk); + } else { + this.bytesWritten += chunk.data.length; + + GenericWorker.prototype.push.call(this, { + data : chunk.data, + meta : { + currentFile : this.currentFile, + percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 + } + }); + } +}; + +/** + * The worker started a new source (an other worker). + * @param {Object} streamInfo the streamInfo object from the new source. + */ +ZipFileWorker.prototype.openedSource = function (streamInfo) { + this.currentSourceOffset = this.bytesWritten; + this.currentFile = streamInfo['file'].name; + + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + + // don't stream folders (because they don't have any content) + if(streamedContent) { + var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + } else { + // we need to wait for the whole file before pushing anything + this.accumulate = true; + } +}; + +/** + * The worker finished a source (an other worker). + * @param {Object} streamInfo the streamInfo object from the finished source. + */ +ZipFileWorker.prototype.closedSource = function (streamInfo) { + this.accumulate = false; + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + + this.dirRecords.push(record.dirRecord); + if(streamedContent) { + // after the streamed file, we put data descriptors + this.push({ + data : generateDataDescriptors(streamInfo), + meta : {percent:100} + }); + } else { + // the content wasn't streamed, we need to push everything now + // first the file record, then the content + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + while(this.contentBuffer.length) { + this.push(this.contentBuffer.shift()); + } + } + this.currentFile = null; +}; + +/** + * @see GenericWorker.flush + */ +ZipFileWorker.prototype.flush = function () { + + var localDirLength = this.bytesWritten; + for(var i = 0; i < this.dirRecords.length; i++) { + this.push({ + data : this.dirRecords[i], + meta : {percent:100} + }); + } + var centralDirLength = this.bytesWritten - localDirLength; + + var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); + + this.push({ + data : dirEnd, + meta : {percent:100} + }); +}; + +/** + * Prepare the next source to be read. + */ +ZipFileWorker.prototype.prepareNextSource = function () { + this.previous = this._sources.shift(); + this.openedSource(this.previous.streamInfo); + if (this.isPaused) { + this.previous.pause(); + } else { + this.previous.resume(); + } +}; + +/** + * @see GenericWorker.registerPrevious + */ +ZipFileWorker.prototype.registerPrevious = function (previous) { + this._sources.push(previous); + var self = this; + + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.closedSource(self.previous.streamInfo); + if(self._sources.length) { + self.prepareNextSource(); + } else { + self.end(); + } + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; +}; + +/** + * @see GenericWorker.resume + */ +ZipFileWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this.previous && this._sources.length) { + this.prepareNextSource(); + return true; + } + if (!this.previous && !this._sources.length && !this.generatedError) { + this.end(); + return true; + } +}; + +/** + * @see GenericWorker.error + */ +ZipFileWorker.prototype.error = function (e) { + var sources = this._sources; + if(!GenericWorker.prototype.error.call(this, e)) { + return false; + } + for(var i = 0; i < sources.length; i++) { + try { + sources[i].error(e); + } catch(e) { + // the `error` exploded, nothing to do + } + } + return true; +}; + +/** + * @see GenericWorker.lock + */ +ZipFileWorker.prototype.lock = function () { + GenericWorker.prototype.lock.call(this); + var sources = this._sources; + for(var i = 0; i < sources.length; i++) { + sources[i].lock(); + } +}; + +module.exports = ZipFileWorker; + +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ +'use strict'; + +var compressions = require('../compressions'); +var ZipFileWorker = require('./ZipFileWorker'); + +/** + * Find the compression to use. + * @param {String} fileCompression the compression defined at the file level, if any. + * @param {String} zipCompression the compression defined at the load() level. + * @return {Object} the compression object to use. + */ +var getCompression = function (fileCompression, zipCompression) { + + var compressionName = fileCompression || zipCompression; + var compression = compressions[compressionName]; + if (!compression) { + throw new Error(compressionName + " is not a valid compression method !"); + } + return compression; +}; + +/** + * Create a worker to generate a zip file. + * @param {JSZip} zip the JSZip instance at the right root level. + * @param {Object} options to generate the zip file. + * @param {String} comment the comment to use. + */ +exports.generateWorker = function (zip, options, comment) { + + var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); + var entriesCount = 0; + try { + + zip.forEach(function (relativePath, file) { + entriesCount++; + var compression = getCompression(file.options.compression, options.compression); + var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; + var dir = file.dir, date = file.date; + + file._compressWorker(compression, compressionOptions) + .withStreamInfo("file", { + name : relativePath, + dir : dir, + date : date, + comment : file.comment || "", + unixPermissions : file.unixPermissions, + dosPermissions : file.dosPermissions + }) + .pipe(zipFileWorker); + }); + zipFileWorker.entriesCount = entriesCount; + } catch (e) { + zipFileWorker.error(e); + } + + return zipFileWorker; +}; + +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ +'use strict'; + +/** + * Representation a of zip file in js + * @constructor + */ +function JSZip() { + // if this constructor is used without `new`, it adds `new` before itself: + if(!(this instanceof JSZip)) { + return new JSZip(); + } + + if(arguments.length) { + throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); + } + + // object containing the files : + // { + // "folder/" : {...}, + // "folder/data.txt" : {...} + // } + // NOTE: we use a null prototype because we do not + // want filenames like "toString" coming from a zip file + // to overwrite methods and attributes in a normal Object. + this.files = Object.create(null); + + this.comment = null; + + // Where we are in the hierarchy + this.root = ""; + this.clone = function() { + var newObj = new JSZip(); + for (var i in this) { + if (typeof this[i] !== "function") { + newObj[i] = this[i]; + } + } + return newObj; + }; +} +JSZip.prototype = require('./object'); +JSZip.prototype.loadAsync = require('./load'); +JSZip.support = require('./support'); +JSZip.defaults = require('./defaults'); + +// TODO find a better way to handle this version, +// a require('package.json').version doesn't work with webpack, see #327 +JSZip.version = "3.7.1"; + +JSZip.loadAsync = function (content, options) { + return new JSZip().loadAsync(content, options); +}; + +JSZip.external = require("./external"); +module.exports = JSZip; + +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ +'use strict'; +var utils = require('./utils'); +var external = require("./external"); +var utf8 = require('./utf8'); +var ZipEntries = require('./zipEntries'); +var Crc32Probe = require('./stream/Crc32Probe'); +var nodejsUtils = require("./nodejsUtils"); + +/** + * Check the CRC32 of an entry. + * @param {ZipEntry} zipEntry the zip entry to check. + * @return {Promise} the result. + */ +function checkEntryCRC32(zipEntry) { + return new external.Promise(function (resolve, reject) { + var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); + worker.on("error", function (e) { + reject(e); + }) + .on("end", function () { + if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { + reject(new Error("Corrupted zip : CRC32 mismatch")); + } else { + resolve(); + } + }) + .resume(); + }); +} + +module.exports = function (data, options) { + var zip = this; + options = utils.extend(options || {}, { + base64: false, + checkCRC32: false, + optimizedBinaryString: false, + createFolders: false, + decodeFileName: utf8.utf8decode + }); + + if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); + } + + return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) + .then(function (data) { + var zipEntries = new ZipEntries(options); + zipEntries.load(data); + return zipEntries; + }).then(function checkCRC32(zipEntries) { + var promises = [external.Promise.resolve(zipEntries)]; + var files = zipEntries.files; + if (options.checkCRC32) { + for (var i = 0; i < files.length; i++) { + promises.push(checkEntryCRC32(files[i])); + } + } + return external.Promise.all(promises); + }).then(function addFiles(results) { + var zipEntries = results.shift(); + var files = zipEntries.files; + for (var i = 0; i < files.length; i++) { + var input = files[i]; + zip.file(input.fileNameStr, input.decompressed, { + binary: true, + optimizedBinaryString: true, + date: input.date, + dir: input.dir, + comment: input.fileCommentStr.length ? input.fileCommentStr : null, + unixPermissions: input.unixPermissions, + dosPermissions: input.dosPermissions, + createFolders: options.createFolders + }); + } + if (zipEntries.zipComment.length) { + zip.comment = zipEntries.zipComment; + } + + return zip; + }); +}; + +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ +"use strict"; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); + +/** + * A worker that use a nodejs stream as source. + * @constructor + * @param {String} filename the name of the file entry for this stream. + * @param {Readable} stream the nodejs stream. + */ +function NodejsStreamInputAdapter(filename, stream) { + GenericWorker.call(this, "Nodejs stream input adapter for " + filename); + this._upstreamEnded = false; + this._bindStream(stream); +} + +utils.inherits(NodejsStreamInputAdapter, GenericWorker); + +/** + * Prepare the stream and bind the callbacks on it. + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. + * @param {Stream} stream the nodejs stream to use. + */ +NodejsStreamInputAdapter.prototype._bindStream = function (stream) { + var self = this; + this._stream = stream; + stream.pause(); + stream + .on("data", function (chunk) { + self.push({ + data: chunk, + meta : { + percent : 0 + } + }); + }) + .on("error", function (e) { + if(self.isPaused) { + this.generatedError = e; + } else { + self.error(e); + } + }) + .on("end", function () { + if(self.isPaused) { + self._upstreamEnded = true; + } else { + self.end(); + } + }); +}; +NodejsStreamInputAdapter.prototype.pause = function () { + if(!GenericWorker.prototype.pause.call(this)) { + return false; + } + this._stream.pause(); + return true; +}; +NodejsStreamInputAdapter.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if(this._upstreamEnded) { + this.end(); + } else { + this._stream.resume(); + } + + return true; +}; + +module.exports = NodejsStreamInputAdapter; + +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ +'use strict'; + +var Readable = require('readable-stream').Readable; + +var utils = require('../utils'); +utils.inherits(NodejsStreamOutputAdapter, Readable); + +/** +* A nodejs stream using a worker as source. +* @see the SourceWrapper in http://nodejs.org/api/stream.html +* @constructor +* @param {StreamHelper} helper the helper wrapping the worker +* @param {Object} options the nodejs stream options +* @param {Function} updateCb the update callback. +*/ +function NodejsStreamOutputAdapter(helper, options, updateCb) { + Readable.call(this, options); + this._helper = helper; + + var self = this; + helper.on("data", function (data, meta) { + if (!self.push(data)) { + self._helper.pause(); + } + if(updateCb) { + updateCb(meta); + } + }) + .on("error", function(e) { + self.emit('error', e); + }) + .on("end", function () { + self.push(null); + }); +} + + +NodejsStreamOutputAdapter.prototype._read = function() { + this._helper.resume(); +}; + +module.exports = NodejsStreamOutputAdapter; + +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ +'use strict'; + +module.exports = { + /** + * True if this is running in Nodejs, will be undefined in a browser. + * In a browser, browserify won't include this file and the whole module + * will be resolved an empty object. + */ + isNode : typeof Buffer !== "undefined", + /** + * Create a new nodejs Buffer from an existing content. + * @param {Object} data the data to pass to the constructor. + * @param {String} encoding the encoding to use. + * @return {Buffer} a new Buffer. + */ + newBufferFrom: function(data, encoding) { + if (Buffer.from && Buffer.from !== Uint8Array.from) { + return Buffer.from(data, encoding); + } else { + if (typeof data === "number") { + // Safeguard for old Node.js versions. On newer versions, + // Buffer.from(number) / Buffer(number, encoding) already throw. + throw new Error("The \"data\" argument must not be a number"); + } + return new Buffer(data, encoding); + } + }, + /** + * Create a new nodejs Buffer with the specified size. + * @param {Integer} size the size of the buffer. + * @return {Buffer} a new Buffer. + */ + allocBuffer: function (size) { + if (Buffer.alloc) { + return Buffer.alloc(size); + } else { + var buf = new Buffer(size); + buf.fill(0); + return buf; + } + }, + /** + * Find out if an object is a Buffer. + * @param {Object} b the object to test. + * @return {Boolean} true if the object is a Buffer, false otherwise. + */ + isBuffer : function(b){ + return Buffer.isBuffer(b); + }, + + isStream : function (obj) { + return obj && + typeof obj.on === "function" && + typeof obj.pause === "function" && + typeof obj.resume === "function"; + } +}; + +},{}],15:[function(require,module,exports){ +'use strict'; +var utf8 = require('./utf8'); +var utils = require('./utils'); +var GenericWorker = require('./stream/GenericWorker'); +var StreamHelper = require('./stream/StreamHelper'); +var defaults = require('./defaults'); +var CompressedObject = require('./compressedObject'); +var ZipObject = require('./zipObject'); +var generate = require("./generate"); +var nodejsUtils = require("./nodejsUtils"); +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); + + +/** + * Add a file in the current folder. + * @private + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file + * @param {Object} originalOptions the options of the file + * @return {Object} the new file. + */ +var fileAdd = function(name, data, originalOptions) { + // be sure sub folders exist + var dataType = utils.getTypeOf(data), + parent; + + + /* + * Correct options. + */ + + var o = utils.extend(originalOptions || {}, defaults); + o.date = o.date || new Date(); + if (o.compression !== null) { + o.compression = o.compression.toUpperCase(); + } + + if (typeof o.unixPermissions === "string") { + o.unixPermissions = parseInt(o.unixPermissions, 8); + } + + // UNX_IFDIR 0040000 see zipinfo.c + if (o.unixPermissions && (o.unixPermissions & 0x4000)) { + o.dir = true; + } + // Bit 4 Directory + if (o.dosPermissions && (o.dosPermissions & 0x0010)) { + o.dir = true; + } + + if (o.dir) { + name = forceTrailingSlash(name); + } + if (o.createFolders && (parent = parentFolder(name))) { + folderAdd.call(this, parent, true); + } + + var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; + if (!originalOptions || typeof originalOptions.binary === "undefined") { + o.binary = !isUnicodeString; + } + + + var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; + + if (isCompressedEmpty || o.dir || !data || data.length === 0) { + o.base64 = false; + o.binary = true; + data = ""; + o.compression = "STORE"; + dataType = "string"; + } + + /* + * Convert content to fit. + */ + + var zipObjectContent = null; + if (data instanceof CompressedObject || data instanceof GenericWorker) { + zipObjectContent = data; + } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + zipObjectContent = new NodejsStreamInputAdapter(name, data); + } else { + zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); + } + + var object = new ZipObject(name, zipObjectContent, o); + this.files[name] = object; + /* + TODO: we can't throw an exception because we have async promises + (we can have a promise of a Date() for example) but returning a + promise is useless because file(name, data) returns the JSZip + object for chaining. Should we break that to allow the user + to catch the error ? + + return external.Promise.resolve(zipObjectContent) + .then(function () { + return object; + }); + */ +}; + +/** + * Find the parent folder of the path. + * @private + * @param {string} path the path to use + * @return {string} the parent folder, or "" + */ +var parentFolder = function (path) { + if (path.slice(-1) === '/') { + path = path.substring(0, path.length - 1); + } + var lastSlash = path.lastIndexOf('/'); + return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; +}; + +/** + * Returns the path with a slash at the end. + * @private + * @param {String} path the path to check. + * @return {String} the path with a trailing slash. + */ +var forceTrailingSlash = function(path) { + // Check the name ends with a / + if (path.slice(-1) !== "/") { + path += "/"; // IE doesn't like substr(-1) + } + return path; +}; + +/** + * Add a (sub) folder in the current folder. + * @private + * @param {string} name the folder's name + * @param {boolean=} [createFolders] If true, automatically create sub + * folders. Defaults to false. + * @return {Object} the new folder. + */ +var folderAdd = function(name, createFolders) { + createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; + + name = forceTrailingSlash(name); + + // Does this folder already exist? + if (!this.files[name]) { + fileAdd.call(this, name, null, { + dir: true, + createFolders: createFolders + }); + } + return this.files[name]; +}; + +/** +* Cross-window, cross-Node-context regular expression detection +* @param {Object} object Anything +* @return {Boolean} true if the object is a regular expression, +* false otherwise +*/ +function isRegExp(object) { + return Object.prototype.toString.call(object) === "[object RegExp]"; +} + +// return the actual prototype of JSZip +var out = { + /** + * @see loadAsync + */ + load: function() { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + + /** + * Call a callback function for each entry at this folder level. + * @param {Function} cb the callback function: + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + */ + forEach: function(cb) { + var filename, relativePath, file; + /* jshint ignore:start */ + // ignore warning about unwanted properties because this.files is a null prototype object + for (filename in this.files) { + file = this.files[filename]; + relativePath = filename.slice(this.root.length, filename.length); + if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root + cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... + } + } + /* jshint ignore:end */ + }, + + /** + * Filter nested files/folders with the specified function. + * @param {Function} search the predicate to use : + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + * @return {Array} An array of matching elements. + */ + filter: function(search) { + var result = []; + this.forEach(function (relativePath, entry) { + if (search(relativePath, entry)) { // the file matches the function + result.push(entry); + } + + }); + return result; + }, + + /** + * Add a file to the zip file, or search a file. + * @param {string|RegExp} name The name of the file to add (if data is defined), + * the name of the file to find (if no data) or a regex to match files. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded + * @param {Object} o File options + * @return {JSZip|Object|Array} this JSZip object (when adding a file), + * a file (when searching by string) or an array of files (when searching by regex). + */ + file: function(name, data, o) { + if (arguments.length === 1) { + if (isRegExp(name)) { + var regexp = name; + return this.filter(function(relativePath, file) { + return !file.dir && regexp.test(relativePath); + }); + } + else { // text + var obj = this.files[this.root + name]; + if (obj && !obj.dir) { + return obj; + } else { + return null; + } + } + } + else { // more than one argument : we have data ! + name = this.root + name; + fileAdd.call(this, name, data, o); + } + return this; + }, + + /** + * Add a directory to the zip file, or search. + * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. + * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. + */ + folder: function(arg) { + if (!arg) { + return this; + } + + if (isRegExp(arg)) { + return this.filter(function(relativePath, file) { + return file.dir && arg.test(relativePath); + }); + } + + // else, name is a new folder + var name = this.root + arg; + var newFolder = folderAdd.call(this, name); + + // Allow chaining by returning a new object with this folder as the root + var ret = this.clone(); + ret.root = newFolder.name; + return ret; + }, + + /** + * Delete a file, or a directory and all sub-files, from the zip + * @param {string} name the name of the file to delete + * @return {JSZip} this JSZip object + */ + remove: function(name) { + name = this.root + name; + var file = this.files[name]; + if (!file) { + // Look for any folders + if (name.slice(-1) !== "/") { + name += "/"; + } + file = this.files[name]; + } + + if (file && !file.dir) { + // file + delete this.files[name]; + } else { + // maybe a folder, delete recursively + var kids = this.filter(function(relativePath, file) { + return file.name.slice(0, name.length) === name; + }); + for (var i = 0; i < kids.length; i++) { + delete this.files[kids[i].name]; + } + } + + return this; + }, + + /** + * Generate the complete zip file + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file + */ + generate: function(options) { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + /** + * Generate the complete zip file as an internal stream. + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {StreamHelper} the streamed zip file. + */ + generateInternalStream: function(options) { + var worker, opts = {}; + try { + opts = utils.extend(options || {}, { + streamFiles: false, + compression: "STORE", + compressionOptions : null, + type: "", + platform: "DOS", + comment: null, + mimeType: 'application/zip', + encodeFileName: utf8.utf8encode + }); + + opts.type = opts.type.toLowerCase(); + opts.compression = opts.compression.toUpperCase(); + + // "binarystring" is preferred but the internals use "string". + if(opts.type === "binarystring") { + opts.type = "string"; + } + + if (!opts.type) { + throw new Error("No output type specified."); + } + + utils.checkSupport(opts.type); + + // accept nodejs `process.platform` + if( + opts.platform === 'darwin' || + opts.platform === 'freebsd' || + opts.platform === 'linux' || + opts.platform === 'sunos' + ) { + opts.platform = "UNIX"; + } + if (opts.platform === 'win32') { + opts.platform = "DOS"; + } + + var comment = opts.comment || this.comment || ""; + worker = generate.generateWorker(this, opts, comment); + } catch (e) { + worker = new GenericWorker("error"); + worker.error(e); + } + return new StreamHelper(worker, opts.type || "string", opts.mimeType); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateAsync: function(options, onUpdate) { + return this.generateInternalStream(options).accumulate(onUpdate); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateNodeStream: function(options, onUpdate) { + options = options || {}; + if (!options.type) { + options.type = "nodebuffer"; + } + return this.generateInternalStream(options).toNodejsStream(onUpdate); + } +}; +module.exports = out; + +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ +/* + * This file is used by module bundlers (browserify/webpack/etc) when + * including a stream implementation. We use "readable-stream" to get a + * consistent behavior between nodejs versions but bundlers often have a shim + * for "stream". Using this shim greatly improve the compatibility and greatly + * reduce the final size of the bundle (only one stream implementation, not + * two). + */ +module.exports = require("stream"); + +},{"stream":undefined}],17:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function ArrayReader(data) { + DataReader.call(this, data); + for(var i = 0; i < this.data.length; i++) { + data[i] = data[i] & 0xFF; + } +} +utils.inherits(ArrayReader, DataReader); +/** + * @see DataReader.byteAt + */ +ArrayReader.prototype.byteAt = function(i) { + return this.data[this.zero + i]; +}; +/** + * @see DataReader.lastIndexOfSignature + */ +ArrayReader.prototype.lastIndexOfSignature = function(sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3); + for (var i = this.length - 4; i >= 0; --i) { + if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { + return i - this.zero; + } + } + + return -1; +}; +/** + * @see DataReader.readAndCheckSignature + */ +ArrayReader.prototype.readAndCheckSignature = function (sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3), + data = this.readData(4); + return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; +}; +/** + * @see DataReader.readData + */ +ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + return []; + } + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = ArrayReader; + +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ +'use strict'; +var utils = require('../utils'); + +function DataReader(data) { + this.data = data; // type : see implementation + this.length = data.length; + this.index = 0; + this.zero = 0; +} +DataReader.prototype = { + /** + * Check that the offset will not go too far. + * @param {string} offset the additional offset to check. + * @throws {Error} an Error if the offset is out of bounds. + */ + checkOffset: function(offset) { + this.checkIndex(this.index + offset); + }, + /** + * Check that the specified index will not be too far. + * @param {string} newIndex the index to check. + * @throws {Error} an Error if the index is out of bounds. + */ + checkIndex: function(newIndex) { + if (this.length < this.zero + newIndex || newIndex < 0) { + throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); + } + }, + /** + * Change the index. + * @param {number} newIndex The new index. + * @throws {Error} if the new index is out of the data. + */ + setIndex: function(newIndex) { + this.checkIndex(newIndex); + this.index = newIndex; + }, + /** + * Skip the next n bytes. + * @param {number} n the number of bytes to skip. + * @throws {Error} if the new index is out of the data. + */ + skip: function(n) { + this.setIndex(this.index + n); + }, + /** + * Get the byte at the specified index. + * @param {number} i the index to use. + * @return {number} a byte. + */ + byteAt: function(i) { + // see implementations + }, + /** + * Get the next number with a given byte size. + * @param {number} size the number of bytes to read. + * @return {number} the corresponding number. + */ + readInt: function(size) { + var result = 0, + i; + this.checkOffset(size); + for (i = this.index + size - 1; i >= this.index; i--) { + result = (result << 8) + this.byteAt(i); + } + this.index += size; + return result; + }, + /** + * Get the next string with a given byte size. + * @param {number} size the number of bytes to read. + * @return {string} the corresponding string. + */ + readString: function(size) { + return utils.transformTo("string", this.readData(size)); + }, + /** + * Get raw data without conversion, bytes. + * @param {number} size the number of bytes to read. + * @return {Object} the raw data, implementation specific. + */ + readData: function(size) { + // see implementations + }, + /** + * Find the last occurrence of a zip signature (4 bytes). + * @param {string} sig the signature to find. + * @return {number} the index of the last occurrence, -1 if not found. + */ + lastIndexOfSignature: function(sig) { + // see implementations + }, + /** + * Read the signature (4 bytes) at the current position and compare it with sig. + * @param {string} sig the expected signature + * @return {boolean} true if the signature matches, false otherwise. + */ + readAndCheckSignature: function(sig) { + // see implementations + }, + /** + * Get the next date. + * @return {Date} the date. + */ + readDate: function() { + var dostime = this.readInt(4); + return new Date(Date.UTC( + ((dostime >> 25) & 0x7f) + 1980, // year + ((dostime >> 21) & 0x0f) - 1, // month + (dostime >> 16) & 0x1f, // day + (dostime >> 11) & 0x1f, // hour + (dostime >> 5) & 0x3f, // minute + (dostime & 0x1f) << 1)); // second + } +}; +module.exports = DataReader; + +},{"../utils":32}],19:[function(require,module,exports){ +'use strict'; +var Uint8ArrayReader = require('./Uint8ArrayReader'); +var utils = require('../utils'); + +function NodeBufferReader(data) { + Uint8ArrayReader.call(this, data); +} +utils.inherits(NodeBufferReader, Uint8ArrayReader); + +/** + * @see DataReader.readData + */ +NodeBufferReader.prototype.readData = function(size) { + this.checkOffset(size); + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = NodeBufferReader; + +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function StringReader(data) { + DataReader.call(this, data); +} +utils.inherits(StringReader, DataReader); +/** + * @see DataReader.byteAt + */ +StringReader.prototype.byteAt = function(i) { + return this.data.charCodeAt(this.zero + i); +}; +/** + * @see DataReader.lastIndexOfSignature + */ +StringReader.prototype.lastIndexOfSignature = function(sig) { + return this.data.lastIndexOf(sig) - this.zero; +}; +/** + * @see DataReader.readAndCheckSignature + */ +StringReader.prototype.readAndCheckSignature = function (sig) { + var data = this.readData(4); + return sig === data; +}; +/** + * @see DataReader.readData + */ +StringReader.prototype.readData = function(size) { + this.checkOffset(size); + // this will work because the constructor applied the "& 0xff" mask. + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = StringReader; + +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ +'use strict'; +var ArrayReader = require('./ArrayReader'); +var utils = require('../utils'); + +function Uint8ArrayReader(data) { + ArrayReader.call(this, data); +} +utils.inherits(Uint8ArrayReader, ArrayReader); +/** + * @see DataReader.readData + */ +Uint8ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. + return new Uint8Array(0); + } + var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = Uint8ArrayReader; + +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var support = require('../support'); +var ArrayReader = require('./ArrayReader'); +var StringReader = require('./StringReader'); +var NodeBufferReader = require('./NodeBufferReader'); +var Uint8ArrayReader = require('./Uint8ArrayReader'); + +/** + * Create a reader adapted to the data. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. + * @return {DataReader} the data reader. + */ +module.exports = function (data) { + var type = utils.getTypeOf(data); + utils.checkSupport(type); + if (type === "string" && !support.uint8array) { + return new StringReader(data); + } + if (type === "nodebuffer") { + return new NodeBufferReader(data); + } + if (support.uint8array) { + return new Uint8ArrayReader(utils.transformTo("uint8array", data)); + } + return new ArrayReader(utils.transformTo("array", data)); +}; + +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ +'use strict'; +exports.LOCAL_FILE_HEADER = "PK\x03\x04"; +exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; +exports.DATA_DESCRIPTOR = "PK\x07\x08"; + +},{}],24:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var utils = require('../utils'); + +/** + * A worker which convert chunks to a specified type. + * @constructor + * @param {String} destType the destination type. + */ +function ConvertWorker(destType) { + GenericWorker.call(this, "ConvertWorker to " + destType); + this.destType = destType; +} +utils.inherits(ConvertWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +ConvertWorker.prototype.processChunk = function (chunk) { + this.push({ + data : utils.transformTo(this.destType, chunk.data), + meta : chunk.meta + }); +}; +module.exports = ConvertWorker; + +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var crc32 = require('../crc32'); +var utils = require('../utils'); + +/** + * A worker which calculate the crc32 of the data flowing through. + * @constructor + */ +function Crc32Probe() { + GenericWorker.call(this, "Crc32Probe"); + this.withStreamInfo("crc32", 0); +} +utils.inherits(Crc32Probe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Crc32Probe.prototype.processChunk = function (chunk) { + this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); + this.push(chunk); +}; +module.exports = Crc32Probe; + +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +/** + * A worker which calculate the total length of the data flowing through. + * @constructor + * @param {String} propName the name used to expose the length + */ +function DataLengthProbe(propName) { + GenericWorker.call(this, "DataLengthProbe for " + propName); + this.propName = propName; + this.withStreamInfo(propName, 0); +} +utils.inherits(DataLengthProbe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +DataLengthProbe.prototype.processChunk = function (chunk) { + if(chunk) { + var length = this.streamInfo[this.propName] || 0; + this.streamInfo[this.propName] = length + chunk.data.length; + } + GenericWorker.prototype.processChunk.call(this, chunk); +}; +module.exports = DataLengthProbe; + + +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +// the size of the generated chunks +// TODO expose this as a public variable +var DEFAULT_BLOCK_SIZE = 16 * 1024; + +/** + * A worker that reads a content and emits chunks. + * @constructor + * @param {Promise} dataP the promise of the data to split + */ +function DataWorker(dataP) { + GenericWorker.call(this, "DataWorker"); + var self = this; + this.dataIsReady = false; + this.index = 0; + this.max = 0; + this.data = null; + this.type = ""; + + this._tickScheduled = false; + + dataP.then(function (data) { + self.dataIsReady = true; + self.data = data; + self.max = data && data.length || 0; + self.type = utils.getTypeOf(data); + if(!self.isPaused) { + self._tickAndRepeat(); + } + }, function (e) { + self.error(e); + }); +} + +utils.inherits(DataWorker, GenericWorker); + +/** + * @see GenericWorker.cleanUp + */ +DataWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this.data = null; +}; + +/** + * @see GenericWorker.resume + */ +DataWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this._tickScheduled && this.dataIsReady) { + this._tickScheduled = true; + utils.delay(this._tickAndRepeat, [], this); + } + return true; +}; + +/** + * Trigger a tick a schedule an other call to this function. + */ +DataWorker.prototype._tickAndRepeat = function() { + this._tickScheduled = false; + if(this.isPaused || this.isFinished) { + return; + } + this._tick(); + if(!this.isFinished) { + utils.delay(this._tickAndRepeat, [], this); + this._tickScheduled = true; + } +}; + +/** + * Read and push a chunk. + */ +DataWorker.prototype._tick = function() { + + if(this.isPaused || this.isFinished) { + return false; + } + + var size = DEFAULT_BLOCK_SIZE; + var data = null, nextIndex = Math.min(this.max, this.index + size); + if (this.index >= this.max) { + // EOF + return this.end(); + } else { + switch(this.type) { + case "string": + data = this.data.substring(this.index, nextIndex); + break; + case "uint8array": + data = this.data.subarray(this.index, nextIndex); + break; + case "array": + case "nodebuffer": + data = this.data.slice(this.index, nextIndex); + break; + } + this.index = nextIndex; + return this.push({ + data : data, + meta : { + percent : this.max ? this.index / this.max * 100 : 0 + } + }); + } +}; + +module.exports = DataWorker; + +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ +'use strict'; + +/** + * A worker that does nothing but passing chunks to the next one. This is like + * a nodejs stream but with some differences. On the good side : + * - it works on IE 6-9 without any issue / polyfill + * - it weights less than the full dependencies bundled with browserify + * - it forwards errors (no need to declare an error handler EVERYWHERE) + * + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an + * object containing anything (`percent` for example), see each worker for more + * details. The latter is the real data (String, Uint8Array, etc). + * + * @constructor + * @param {String} name the name of the stream (mainly used for debugging purposes) + */ +function GenericWorker(name) { + // the name of the worker + this.name = name || "default"; + // an object containing metadata about the workers chain + this.streamInfo = {}; + // an error which happened when the worker was paused + this.generatedError = null; + // an object containing metadata to be merged by this worker into the general metadata + this.extraStreamInfo = {}; + // true if the stream is paused (and should not do anything), false otherwise + this.isPaused = true; + // true if the stream is finished (and should not do anything), false otherwise + this.isFinished = false; + // true if the stream is locked to prevent further structure updates (pipe), false otherwise + this.isLocked = false; + // the event listeners + this._listeners = { + 'data':[], + 'end':[], + 'error':[] + }; + // the previous worker, if any + this.previous = null; +} + +GenericWorker.prototype = { + /** + * Push a chunk to the next workers. + * @param {Object} chunk the chunk to push + */ + push : function (chunk) { + this.emit("data", chunk); + }, + /** + * End the stream. + * @return {Boolean} true if this call ended the worker, false otherwise. + */ + end : function () { + if (this.isFinished) { + return false; + } + + this.flush(); + try { + this.emit("end"); + this.cleanUp(); + this.isFinished = true; + } catch (e) { + this.emit("error", e); + } + return true; + }, + /** + * End the stream with an error. + * @param {Error} e the error which caused the premature end. + * @return {Boolean} true if this call ended the worker with an error, false otherwise. + */ + error : function (e) { + if (this.isFinished) { + return false; + } + + if(this.isPaused) { + this.generatedError = e; + } else { + this.isFinished = true; + + this.emit("error", e); + + // in the workers chain exploded in the middle of the chain, + // the error event will go downward but we also need to notify + // workers upward that there has been an error. + if(this.previous) { + this.previous.error(e); + } + + this.cleanUp(); + } + return true; + }, + /** + * Add a callback on an event. + * @param {String} name the name of the event (data, end, error) + * @param {Function} listener the function to call when the event is triggered + * @return {GenericWorker} the current object for chainability + */ + on : function (name, listener) { + this._listeners[name].push(listener); + return this; + }, + /** + * Clean any references when a worker is ending. + */ + cleanUp : function () { + this.streamInfo = this.generatedError = this.extraStreamInfo = null; + this._listeners = []; + }, + /** + * Trigger an event. This will call registered callback with the provided arg. + * @param {String} name the name of the event (data, end, error) + * @param {Object} arg the argument to call the callback with. + */ + emit : function (name, arg) { + if (this._listeners[name]) { + for(var i = 0; i < this._listeners[name].length; i++) { + this._listeners[name][i].call(this, arg); + } + } + }, + /** + * Chain a worker with an other. + * @param {Worker} next the worker receiving events from the current one. + * @return {worker} the next worker for chainability + */ + pipe : function (next) { + return next.registerPrevious(this); + }, + /** + * Same as `pipe` in the other direction. + * Using an API with `pipe(next)` is very easy. + * Implementing the API with the point of view of the next one registering + * a source is easier, see the ZipFileWorker. + * @param {Worker} previous the previous worker, sending events to this one + * @return {Worker} the current worker for chainability + */ + registerPrevious : function (previous) { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + + // sharing the streamInfo... + this.streamInfo = previous.streamInfo; + // ... and adding our own bits + this.mergeStreamInfo(); + this.previous = previous; + var self = this; + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.end(); + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; + }, + /** + * Pause the stream so it doesn't send events anymore. + * @return {Boolean} true if this call paused the worker, false otherwise. + */ + pause : function () { + if(this.isPaused || this.isFinished) { + return false; + } + this.isPaused = true; + + if(this.previous) { + this.previous.pause(); + } + return true; + }, + /** + * Resume a paused stream. + * @return {Boolean} true if this call resumed the worker, false otherwise. + */ + resume : function () { + if(!this.isPaused || this.isFinished) { + return false; + } + this.isPaused = false; + + // if true, the worker tried to resume but failed + var withError = false; + if(this.generatedError) { + this.error(this.generatedError); + withError = true; + } + if(this.previous) { + this.previous.resume(); + } + + return !withError; + }, + /** + * Flush any remaining bytes as the stream is ending. + */ + flush : function () {}, + /** + * Process a chunk. This is usually the method overridden. + * @param {Object} chunk the chunk to process. + */ + processChunk : function(chunk) { + this.push(chunk); + }, + /** + * Add a key/value to be added in the workers chain streamInfo once activated. + * @param {String} key the key to use + * @param {Object} value the associated value + * @return {Worker} the current worker for chainability + */ + withStreamInfo : function (key, value) { + this.extraStreamInfo[key] = value; + this.mergeStreamInfo(); + return this; + }, + /** + * Merge this worker's streamInfo into the chain's streamInfo. + */ + mergeStreamInfo : function () { + for(var key in this.extraStreamInfo) { + if (!this.extraStreamInfo.hasOwnProperty(key)) { + continue; + } + this.streamInfo[key] = this.extraStreamInfo[key]; + } + }, + + /** + * Lock the stream to prevent further updates on the workers chain. + * After calling this method, all calls to pipe will fail. + */ + lock: function () { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + this.isLocked = true; + if (this.previous) { + this.previous.lock(); + } + }, + + /** + * + * Pretty print the workers chain. + */ + toString : function () { + var me = "Worker " + this.name; + if (this.previous) { + return this.previous + " -> " + me; + } else { + return me; + } + } +}; + +module.exports = GenericWorker; + +},{}],29:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var ConvertWorker = require('./ConvertWorker'); +var GenericWorker = require('./GenericWorker'); +var base64 = require('../base64'); +var support = require("../support"); +var external = require("../external"); + +var NodejsStreamOutputAdapter = null; +if (support.nodestream) { + try { + NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); + } catch(e) {} +} + +/** + * Apply the final transformation of the data. If the user wants a Blob for + * example, it's easier to work with an U8intArray and finally do the + * ArrayBuffer/Blob conversion. + * @param {String} type the name of the final type + * @param {String|Uint8Array|Buffer} content the content to transform + * @param {String} mimeType the mime type of the content, if applicable. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. + */ +function transformZipOutput(type, content, mimeType) { + switch(type) { + case "blob" : + return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); + case "base64" : + return base64.encode(content); + default : + return utils.transformTo(type, content); + } +} + +/** + * Concatenate an array of data of the given type. + * @param {String} type the type of the data in the given array. + * @param {Array} dataArray the array containing the data chunks to concatenate + * @return {String|Uint8Array|Buffer} the concatenated data + * @throws Error if the asked type is unsupported + */ +function concat (type, dataArray) { + var i, index = 0, res = null, totalLength = 0; + for(i = 0; i < dataArray.length; i++) { + totalLength += dataArray[i].length; + } + switch(type) { + case "string": + return dataArray.join(""); + case "array": + return Array.prototype.concat.apply([], dataArray); + case "uint8array": + res = new Uint8Array(totalLength); + for(i = 0; i < dataArray.length; i++) { + res.set(dataArray[i], index); + index += dataArray[i].length; + } + return res; + case "nodebuffer": + return Buffer.concat(dataArray); + default: + throw new Error("concat : unsupported type '" + type + "'"); + } +} + +/** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {StreamHelper} helper the helper to use. + * @param {Function} updateCallback a callback called on each update. Called + * with one arg : + * - the metadata linked to the update received. + * @return Promise the promise for the accumulation. + */ +function accumulate(helper, updateCallback) { + return new external.Promise(function (resolve, reject){ + var dataArray = []; + var chunkType = helper._internalType, + resultType = helper._outputType, + mimeType = helper._mimeType; + helper + .on('data', function (data, meta) { + dataArray.push(data); + if(updateCallback) { + updateCallback(meta); + } + }) + .on('error', function(err) { + dataArray = []; + reject(err); + }) + .on('end', function (){ + try { + var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); + resolve(result); + } catch (e) { + reject(e); + } + dataArray = []; + }) + .resume(); + }); +} + +/** + * An helper to easily use workers outside of JSZip. + * @constructor + * @param {Worker} worker the worker to wrap + * @param {String} outputType the type of data expected by the use + * @param {String} mimeType the mime type of the content, if applicable. + */ +function StreamHelper(worker, outputType, mimeType) { + var internalType = outputType; + switch(outputType) { + case "blob": + case "arraybuffer": + internalType = "uint8array"; + break; + case "base64": + internalType = "string"; + break; + } + + try { + // the type used internally + this._internalType = internalType; + // the type used to output results + this._outputType = outputType; + // the mime type + this._mimeType = mimeType; + utils.checkSupport(internalType); + this._worker = worker.pipe(new ConvertWorker(internalType)); + // the last workers can be rewired without issues but we need to + // prevent any updates on previous workers. + worker.lock(); + } catch(e) { + this._worker = new GenericWorker("error"); + this._worker.error(e); + } +} + +StreamHelper.prototype = { + /** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {Function} updateCb the update callback. + * @return Promise the promise for the accumulation. + */ + accumulate : function (updateCb) { + return accumulate(this, updateCb); + }, + /** + * Add a listener on an event triggered on a stream. + * @param {String} evt the name of the event + * @param {Function} fn the listener + * @return {StreamHelper} the current helper. + */ + on : function (evt, fn) { + var self = this; + + if(evt === "data") { + this._worker.on(evt, function (chunk) { + fn.call(self, chunk.data, chunk.meta); + }); + } else { + this._worker.on(evt, function () { + utils.delay(fn, arguments, self); + }); + } + return this; + }, + /** + * Resume the flow of chunks. + * @return {StreamHelper} the current helper. + */ + resume : function () { + utils.delay(this._worker.resume, [], this._worker); + return this; + }, + /** + * Pause the flow of chunks. + * @return {StreamHelper} the current helper. + */ + pause : function () { + this._worker.pause(); + return this; + }, + /** + * Return a nodejs stream for this helper. + * @param {Function} updateCb the update callback. + * @return {NodejsStreamOutputAdapter} the nodejs stream. + */ + toNodejsStream : function (updateCb) { + utils.checkSupport("nodestream"); + if (this._outputType !== "nodebuffer") { + // an object stream containing blob/arraybuffer/uint8array/string + // is strange and I don't know if it would be useful. + // I you find this comment and have a good usecase, please open a + // bug report ! + throw new Error(this._outputType + " is not supported by this method"); + } + + return new NodejsStreamOutputAdapter(this, { + objectMode : this._outputType !== "nodebuffer" + }, updateCb); + } +}; + + +module.exports = StreamHelper; + +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ +'use strict'; + +exports.base64 = true; +exports.array = true; +exports.string = true; +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; +exports.nodebuffer = typeof Buffer !== "undefined"; +// contains true if JSZip can read/generate Uint8Array, false otherwise. +exports.uint8array = typeof Uint8Array !== "undefined"; + +if (typeof ArrayBuffer === "undefined") { + exports.blob = false; +} +else { + var buffer = new ArrayBuffer(0); + try { + exports.blob = new Blob([buffer], { + type: "application/zip" + }).size === 0; + } + catch (e) { + try { + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(buffer); + exports.blob = builder.getBlob('application/zip').size === 0; + } + catch (e) { + exports.blob = false; + } + } +} + +try { + exports.nodestream = !!require('readable-stream').Readable; +} catch(e) { + exports.nodestream = false; +} + +},{"readable-stream":16}],31:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var support = require('./support'); +var nodejsUtils = require('./nodejsUtils'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * The following functions come from pako, from pako/lib/utils/strings + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Table with utf8 lengths (calculated by first byte of sequence) +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, +// because max possible codepoint is 0x10ffff +var _utf8len = new Array(256); +for (var i=0; i<256; i++) { + _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); +} +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start + +// convert string to array (typed, when possible) +var string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + if (support.uint8array) { + buf = new Uint8Array(buf_len); + } else { + buf = new Array(buf_len); + } + + // convert + for (i=0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; +}; + +// Calculate max possible position in utf8 buffer, +// that will not break sequence. If that's not possible +// - (very small limits) return max size as is. +// +// buf[] - utf8 bytes array +// max - length limit (mandatory); +var utf8border = function(buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max-1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Fuckup - very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means vuffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; +}; + +// convert array to string +var buf2string = function (buf) { + var str, i, out, c, c_len; + var len = buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len*2); + + for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + // shrinkBuf(utf16buf, out) + if (utf16buf.length !== out) { + if(utf16buf.subarray) { + utf16buf = utf16buf.subarray(0, out); + } else { + utf16buf.length = out; + } + } + + // return String.fromCharCode.apply(null, utf16buf); + return utils.applyFromCharCode(utf16buf); +}; + + +// That's all for the pako functions. + + +/** + * Transform a javascript string into an array (typed if possible) of bytes, + * UTF-8 encoded. + * @param {String} str the string to encode + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. + */ +exports.utf8encode = function utf8encode(str) { + if (support.nodebuffer) { + return nodejsUtils.newBufferFrom(str, "utf-8"); + } + + return string2buf(str); +}; + + +/** + * Transform a bytes array (or a representation) representing an UTF-8 encoded + * string into a javascript string. + * @param {Array|Uint8Array|Buffer} buf the data de decode + * @return {String} the decoded string. + */ +exports.utf8decode = function utf8decode(buf) { + if (support.nodebuffer) { + return utils.transformTo("nodebuffer", buf).toString("utf-8"); + } + + buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); + + return buf2string(buf); +}; + +/** + * A worker to decode utf8 encoded binary chunks into string chunks. + * @constructor + */ +function Utf8DecodeWorker() { + GenericWorker.call(this, "utf-8 decode"); + // the last bytes if a chunk didn't end with a complete codepoint. + this.leftOver = null; +} +utils.inherits(Utf8DecodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8DecodeWorker.prototype.processChunk = function (chunk) { + + var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); + + // 1st step, re-use what's left of the previous chunk + if (this.leftOver && this.leftOver.length) { + if(support.uint8array) { + var previousData = data; + data = new Uint8Array(previousData.length + this.leftOver.length); + data.set(this.leftOver, 0); + data.set(previousData, this.leftOver.length); + } else { + data = this.leftOver.concat(data); + } + this.leftOver = null; + } + + var nextBoundary = utf8border(data); + var usableData = data; + if (nextBoundary !== data.length) { + if (support.uint8array) { + usableData = data.subarray(0, nextBoundary); + this.leftOver = data.subarray(nextBoundary, data.length); + } else { + usableData = data.slice(0, nextBoundary); + this.leftOver = data.slice(nextBoundary, data.length); + } + } + + this.push({ + data : exports.utf8decode(usableData), + meta : chunk.meta + }); +}; + +/** + * @see GenericWorker.flush + */ +Utf8DecodeWorker.prototype.flush = function () { + if(this.leftOver && this.leftOver.length) { + this.push({ + data : exports.utf8decode(this.leftOver), + meta : {} + }); + this.leftOver = null; + } +}; +exports.Utf8DecodeWorker = Utf8DecodeWorker; + +/** + * A worker to endcode string chunks into utf8 encoded binary chunks. + * @constructor + */ +function Utf8EncodeWorker() { + GenericWorker.call(this, "utf-8 encode"); +} +utils.inherits(Utf8EncodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8EncodeWorker.prototype.processChunk = function (chunk) { + this.push({ + data : exports.utf8encode(chunk.data), + meta : chunk.meta + }); +}; +exports.Utf8EncodeWorker = Utf8EncodeWorker; + +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ +'use strict'; + +var support = require('./support'); +var base64 = require('./base64'); +var nodejsUtils = require('./nodejsUtils'); +var setImmediate = require('set-immediate-shim'); +var external = require("./external"); + + +/** + * Convert a string that pass as a "binary string": it should represent a byte + * array but may have > 255 char codes. Be sure to take only the first byte + * and returns the byte array. + * @param {String} str the string to transform. + * @return {Array|Uint8Array} the string in a binary format. + */ +function string2binary(str) { + var result = null; + if (support.uint8array) { + result = new Uint8Array(str.length); + } else { + result = new Array(str.length); + } + return stringToArrayLike(str, result); +} + +/** + * Create a new blob with the given content and the given type. + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use + * an Uint8Array because the stock browser of android 4 won't accept it (it + * will be silently converted to a string, "[object Uint8Array]"). + * + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: + * when a large amount of Array is used to create the Blob, the amount of + * memory consumed is nearly 100 times the original data amount. + * + * @param {String} type the mime type of the blob. + * @return {Blob} the created blob. + */ +exports.newBlob = function(part, type) { + exports.checkSupport("blob"); + + try { + // Blob constructor + return new Blob([part], { + type: type + }); + } + catch (e) { + + try { + // deprecated, browser only, old way + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(part); + return builder.getBlob(type); + } + catch (e) { + + // well, fuck ?! + throw new Error("Bug : can't construct the Blob."); + } + } + + +}; +/** + * The identity function. + * @param {Object} input the input. + * @return {Object} the same input. + */ +function identity(input) { + return input; +} + +/** + * Fill in an array with a string. + * @param {String} str the string to use. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. + */ +function stringToArrayLike(str, array) { + for (var i = 0; i < str.length; ++i) { + array[i] = str.charCodeAt(i) & 0xFF; + } + return array; +} + +/** + * An helper for the function arrayLikeToString. + * This contains static information and functions that + * can be optimized by the browser JIT compiler. + */ +var arrayToStringHelper = { + /** + * Transform an array of int into a string, chunk by chunk. + * See the performances notes on arrayLikeToString. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @param {String} type the type of the array. + * @param {Integer} chunk the chunk size. + * @return {String} the resulting string. + * @throws Error if the chunk is too big for the stack. + */ + stringifyByChunk: function(array, type, chunk) { + var result = [], k = 0, len = array.length; + // shortcut + if (len <= chunk) { + return String.fromCharCode.apply(null, array); + } + while (k < len) { + if (type === "array" || type === "nodebuffer") { + result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); + } + else { + result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); + } + k += chunk; + } + return result.join(""); + }, + /** + * Call String.fromCharCode on every item in the array. + * This is the naive implementation, which generate A LOT of intermediate string. + * This should be used when everything else fail. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ + stringifyByChar: function(array){ + var resultStr = ""; + for(var i = 0; i < array.length; i++) { + resultStr += String.fromCharCode(array[i]); + } + return resultStr; + }, + applyCanBeUsed : { + /** + * true if the browser accepts to use String.fromCharCode on Uint8Array + */ + uint8array : (function () { + try { + return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; + } catch (e) { + return false; + } + })(), + /** + * true if the browser accepts to use String.fromCharCode on nodejs Buffer. + */ + nodebuffer : (function () { + try { + return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; + } catch (e) { + return false; + } + })() + } +}; + +/** + * Transform an array-like object to a string. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ +function arrayLikeToString(array) { + // Performances notes : + // -------------------- + // String.fromCharCode.apply(null, array) is the fastest, see + // see http://jsperf.com/converting-a-uint8array-to-a-string/2 + // but the stack is limited (and we can get huge arrays !). + // + // result += String.fromCharCode(array[i]); generate too many strings ! + // + // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 + // TODO : we now have workers that split the work. Do we still need that ? + var chunk = 65536, + type = exports.getTypeOf(array), + canUseApply = true; + if (type === "uint8array") { + canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; + } else if (type === "nodebuffer") { + canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; + } + + if (canUseApply) { + while (chunk > 1) { + try { + return arrayToStringHelper.stringifyByChunk(array, type, chunk); + } catch (e) { + chunk = Math.floor(chunk / 2); + } + } + } + + // no apply or chunk error : slow and painful algorithm + // default browser on android 4.* + return arrayToStringHelper.stringifyByChar(array); +} + +exports.applyFromCharCode = arrayLikeToString; + + +/** + * Copy the data from an array-like to an other array-like. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. + */ +function arrayLikeToArrayLike(arrayFrom, arrayTo) { + for (var i = 0; i < arrayFrom.length; i++) { + arrayTo[i] = arrayFrom[i]; + } + return arrayTo; +} + +// a matrix containing functions to transform everything into everything. +var transform = {}; + +// string to ? +transform["string"] = { + "string": identity, + "array": function(input) { + return stringToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["string"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return stringToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": function(input) { + return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); + } +}; + +// array to ? +transform["array"] = { + "string": arrayLikeToString, + "array": identity, + "arraybuffer": function(input) { + return (new Uint8Array(input)).buffer; + }, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// arraybuffer to ? +transform["arraybuffer"] = { + "string": function(input) { + return arrayLikeToString(new Uint8Array(input)); + }, + "array": function(input) { + return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); + }, + "arraybuffer": identity, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(new Uint8Array(input)); + } +}; + +// uint8array to ? +transform["uint8array"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return input.buffer; + }, + "uint8array": identity, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// nodebuffer to ? +transform["nodebuffer"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["nodebuffer"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return arrayLikeToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": identity +}; + +/** + * Transform an input into any type. + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. + * If no output type is specified, the unmodified input will be returned. + * @param {String} outputType the output type. + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. + * @throws {Error} an Error if the browser doesn't support the requested output type. + */ +exports.transformTo = function(outputType, input) { + if (!input) { + // undefined, null, etc + // an empty string won't harm. + input = ""; + } + if (!outputType) { + return input; + } + exports.checkSupport(outputType); + var inputType = exports.getTypeOf(input); + var result = transform[inputType][outputType](input); + return result; +}; + +/** + * Return the type of the input. + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. + * @param {Object} input the input to identify. + * @return {String} the (lowercase) type of the input. + */ +exports.getTypeOf = function(input) { + if (typeof input === "string") { + return "string"; + } + if (Object.prototype.toString.call(input) === "[object Array]") { + return "array"; + } + if (support.nodebuffer && nodejsUtils.isBuffer(input)) { + return "nodebuffer"; + } + if (support.uint8array && input instanceof Uint8Array) { + return "uint8array"; + } + if (support.arraybuffer && input instanceof ArrayBuffer) { + return "arraybuffer"; + } +}; + +/** + * Throw an exception if the type is not supported. + * @param {String} type the type to check. + * @throws {Error} an Error if the browser doesn't support the requested type. + */ +exports.checkSupport = function(type) { + var supported = support[type.toLowerCase()]; + if (!supported) { + throw new Error(type + " is not supported by this platform"); + } +}; + +exports.MAX_VALUE_16BITS = 65535; +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 + +/** + * Prettify a string read as binary. + * @param {string} str the string to prettify. + * @return {string} a pretty string. + */ +exports.pretty = function(str) { + var res = '', + code, i; + for (i = 0; i < (str || "").length; i++) { + code = str.charCodeAt(i); + res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); + } + return res; +}; + +/** + * Defer the call of a function. + * @param {Function} callback the function to call asynchronously. + * @param {Array} args the arguments to give to the callback. + */ +exports.delay = function(callback, args, self) { + setImmediate(function () { + callback.apply(self || null, args || []); + }); +}; + +/** + * Extends a prototype with an other, without calling a constructor with + * side effects. Inspired by nodejs' `utils.inherits` + * @param {Function} ctor the constructor to augment + * @param {Function} superCtor the parent constructor to use + */ +exports.inherits = function (ctor, superCtor) { + var Obj = function() {}; + Obj.prototype = superCtor.prototype; + ctor.prototype = new Obj(); +}; + +/** + * Merge the objects passed as parameters into a new one. + * @private + * @param {...Object} var_args All objects to merge. + * @return {Object} a new object with the data of the others. + */ +exports.extend = function() { + var result = {}, i, attr; + for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers + for (attr in arguments[i]) { + if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { + result[attr] = arguments[i][attr]; + } + } + } + return result; +}; + +/** + * Transform arbitrary content into a Promise. + * @param {String} name a name for the content being processed. + * @param {Object} inputData the content to process. + * @param {Boolean} isBinary true if the content is not an unicode string + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. + * @param {Boolean} isBase64 true if the string content is encoded with base64. + * @return {Promise} a promise in a format usable by JSZip. + */ +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { + + // if inputData is already a promise, this flatten it. + var promise = external.Promise.resolve(inputData).then(function(data) { + + + var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); + + if (isBlob && typeof FileReader !== "undefined") { + return new external.Promise(function (resolve, reject) { + var reader = new FileReader(); + + reader.onload = function(e) { + resolve(e.target.result); + }; + reader.onerror = function(e) { + reject(e.target.error); + }; + reader.readAsArrayBuffer(data); + }); + } else { + return data; + } + }); + + return promise.then(function(data) { + var dataType = exports.getTypeOf(data); + + if (!dataType) { + return external.Promise.reject( + new Error("Can't read the data of '" + name + "'. Is it " + + "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") + ); + } + // special case : it's way easier to work with Uint8Array than with ArrayBuffer + if (dataType === "arraybuffer") { + data = exports.transformTo("uint8array", data); + } else if (dataType === "string") { + if (isBase64) { + data = base64.decode(data); + } + else if (isBinary) { + // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask + if (isOptimizedBinaryString !== true) { + // this is a string, not in a base64 format. + // Be sure that this is a correct "binary string" + data = string2binary(data); + } + } + } + return data; + }); +}; + +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var sig = require('./signature'); +var ZipEntry = require('./zipEntry'); +var utf8 = require('./utf8'); +var support = require('./support'); +// class ZipEntries {{{ +/** + * All the entries in the zip file. + * @constructor + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntries(loadOptions) { + this.files = []; + this.loadOptions = loadOptions; +} +ZipEntries.prototype = { + /** + * Check that the reader is on the specified signature. + * @param {string} expectedSignature the expected signature. + * @throws {Error} if it is an other signature. + */ + checkSignature: function(expectedSignature) { + if (!this.reader.readAndCheckSignature(expectedSignature)) { + this.reader.index -= 4; + var signature = this.reader.readString(4); + throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); + } + }, + /** + * Check if the given signature is at the given index. + * @param {number} askedIndex the index to check. + * @param {string} expectedSignature the signature to expect. + * @return {boolean} true if the signature is here, false otherwise. + */ + isSignature: function(askedIndex, expectedSignature) { + var currentIndex = this.reader.index; + this.reader.setIndex(askedIndex); + var signature = this.reader.readString(4); + var result = signature === expectedSignature; + this.reader.setIndex(currentIndex); + return result; + }, + /** + * Read the end of the central directory. + */ + readBlockEndOfCentral: function() { + this.diskNumber = this.reader.readInt(2); + this.diskWithCentralDirStart = this.reader.readInt(2); + this.centralDirRecordsOnThisDisk = this.reader.readInt(2); + this.centralDirRecords = this.reader.readInt(2); + this.centralDirSize = this.reader.readInt(4); + this.centralDirOffset = this.reader.readInt(4); + + this.zipCommentLength = this.reader.readInt(2); + // warning : the encoding depends of the system locale + // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. + // On a windows machine, this field is encoded with the localized windows code page. + var zipComment = this.reader.readData(this.zipCommentLength); + var decodeParamType = support.uint8array ? "uint8array" : "array"; + // To get consistent behavior with the generation part, we will assume that + // this is utf8 encoded unless specified otherwise. + var decodeContent = utils.transformTo(decodeParamType, zipComment); + this.zipComment = this.loadOptions.decodeFileName(decodeContent); + }, + /** + * Read the end of the Zip 64 central directory. + * Not merged with the method readEndOfCentral : + * The end of central can coexist with its Zip64 brother, + * I don't want to read the wrong number of bytes ! + */ + readBlockZip64EndOfCentral: function() { + this.zip64EndOfCentralSize = this.reader.readInt(8); + this.reader.skip(4); + // this.versionMadeBy = this.reader.readString(2); + // this.versionNeeded = this.reader.readInt(2); + this.diskNumber = this.reader.readInt(4); + this.diskWithCentralDirStart = this.reader.readInt(4); + this.centralDirRecordsOnThisDisk = this.reader.readInt(8); + this.centralDirRecords = this.reader.readInt(8); + this.centralDirSize = this.reader.readInt(8); + this.centralDirOffset = this.reader.readInt(8); + + this.zip64ExtensibleData = {}; + var extraDataSize = this.zip64EndOfCentralSize - 44, + index = 0, + extraFieldId, + extraFieldLength, + extraFieldValue; + while (index < extraDataSize) { + extraFieldId = this.reader.readInt(2); + extraFieldLength = this.reader.readInt(4); + extraFieldValue = this.reader.readData(extraFieldLength); + this.zip64ExtensibleData[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Read the end of the Zip 64 central directory locator. + */ + readBlockZip64EndOfCentralLocator: function() { + this.diskWithZip64CentralDirStart = this.reader.readInt(4); + this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); + this.disksCount = this.reader.readInt(4); + if (this.disksCount > 1) { + throw new Error("Multi-volumes zip are not supported"); + } + }, + /** + * Read the local files, based on the offset read in the central part. + */ + readLocalFiles: function() { + var i, file; + for (i = 0; i < this.files.length; i++) { + file = this.files[i]; + this.reader.setIndex(file.localHeaderOffset); + this.checkSignature(sig.LOCAL_FILE_HEADER); + file.readLocalPart(this.reader); + file.handleUTF8(); + file.processAttributes(); + } + }, + /** + * Read the central directory. + */ + readCentralDir: function() { + var file; + + this.reader.setIndex(this.centralDirOffset); + while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { + file = new ZipEntry({ + zip64: this.zip64 + }, this.loadOptions); + file.readCentralPart(this.reader); + this.files.push(file); + } + + if (this.centralDirRecords !== this.files.length) { + if (this.centralDirRecords !== 0 && this.files.length === 0) { + // We expected some records but couldn't find ANY. + // This is really suspicious, as if something went wrong. + throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); + } else { + // We found some records but not all. + // Something is wrong but we got something for the user: no error here. + // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); + } + } + }, + /** + * Read the end of central directory. + */ + readEndOfCentral: function() { + var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); + if (offset < 0) { + // Check if the content is a truncated zip or complete garbage. + // A "LOCAL_FILE_HEADER" is not required at the beginning (auto + // extractible zip for example) but it can give a good hint. + // If an ajax request was used without responseType, we will also + // get unreadable data. + var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); + + if (isGarbage) { + throw new Error("Can't find end of central directory : is this a zip file ? " + + "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); + } else { + throw new Error("Corrupted zip: can't find end of central directory"); + } + + } + this.reader.setIndex(offset); + var endOfCentralDirOffset = offset; + this.checkSignature(sig.CENTRAL_DIRECTORY_END); + this.readBlockEndOfCentral(); + + + /* extract from the zip spec : + 4) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + ZIP64 format record should be created. + 5) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + */ + if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { + this.zip64 = true; + + /* + Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from + the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents + all numbers as 64-bit double precision IEEE 754 floating point numbers. + So, we have 53bits for integers and bitwise operations treat everything as 32bits. + see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators + and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 + */ + + // should look for a zip64 EOCD locator + offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + if (offset < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); + } + this.reader.setIndex(offset); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + this.readBlockZip64EndOfCentralLocator(); + + // now the zip64 EOCD record + if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { + // console.warn("ZIP64 end of central directory not where expected."); + this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + if (this.relativeOffsetEndOfZip64CentralDir < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); + } + } + this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + this.readBlockZip64EndOfCentral(); + } + + var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; + if (this.zip64) { + expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator + expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; + } + + var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; + + if (extraBytes > 0) { + // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); + if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { + // The offsets seem wrong, but we have something at the specified offset. + // So… we keep it. + } else { + // the offset is wrong, update the "zero" of the reader + // this happens if data has been prepended (crx files for example) + this.reader.zero = extraBytes; + } + } else if (extraBytes < 0) { + throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); + } + }, + prepareReader: function(data) { + this.reader = readerFor(data); + }, + /** + * Read a zip file and create ZipEntries. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. + */ + load: function(data) { + this.prepareReader(data); + this.readEndOfCentral(); + this.readCentralDir(); + this.readLocalFiles(); + } +}; +// }}} end of ZipEntries +module.exports = ZipEntries; + +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var CompressedObject = require('./compressedObject'); +var crc32fn = require('./crc32'); +var utf8 = require('./utf8'); +var compressions = require('./compressions'); +var support = require('./support'); + +var MADE_BY_DOS = 0x00; +var MADE_BY_UNIX = 0x03; + +/** + * Find a compression registered in JSZip. + * @param {string} compressionMethod the method magic to find. + * @return {Object|null} the JSZip compression object, null if none found. + */ +var findCompression = function(compressionMethod) { + for (var method in compressions) { + if (!compressions.hasOwnProperty(method)) { + continue; + } + if (compressions[method].magic === compressionMethod) { + return compressions[method]; + } + } + return null; +}; + +// class ZipEntry {{{ +/** + * An entry in the zip file. + * @constructor + * @param {Object} options Options of the current file. + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntry(options, loadOptions) { + this.options = options; + this.loadOptions = loadOptions; +} +ZipEntry.prototype = { + /** + * say if the file is encrypted. + * @return {boolean} true if the file is encrypted, false otherwise. + */ + isEncrypted: function() { + // bit 1 is set + return (this.bitFlag & 0x0001) === 0x0001; + }, + /** + * say if the file has utf-8 filename/comment. + * @return {boolean} true if the filename/comment is in utf-8, false otherwise. + */ + useUTF8: function() { + // bit 11 is set + return (this.bitFlag & 0x0800) === 0x0800; + }, + /** + * Read the local part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readLocalPart: function(reader) { + var compression, localExtraFieldsLength; + + // we already know everything from the central dir ! + // If the central dir data are false, we are doomed. + // On the bright side, the local part is scary : zip64, data descriptors, both, etc. + // The less data we get here, the more reliable this should be. + // Let's skip the whole header and dash to the data ! + reader.skip(22); + // in some zip created on windows, the filename stored in the central dir contains \ instead of /. + // Strangely, the filename here is OK. + // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes + // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... + // Search "unzip mismatching "local" filename continuing with "central" filename version" on + // the internet. + // + // I think I see the logic here : the central directory is used to display + // content and the local directory is used to extract the files. Mixing / and \ + // may be used to display \ to windows users and use / when extracting the files. + // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 + this.fileNameLength = reader.readInt(2); + localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir + // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. + this.fileName = reader.readData(this.fileNameLength); + reader.skip(localExtraFieldsLength); + + if (this.compressedSize === -1 || this.uncompressedSize === -1) { + throw new Error("Bug or corrupted zip : didn't get enough information from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); + } + + compression = findCompression(this.compressionMethod); + if (compression === null) { // no compression found + throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); + } + this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); + }, + + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readCentralPart: function(reader) { + this.versionMadeBy = reader.readInt(2); + reader.skip(2); + // this.versionNeeded = reader.readInt(2); + this.bitFlag = reader.readInt(2); + this.compressionMethod = reader.readString(2); + this.date = reader.readDate(); + this.crc32 = reader.readInt(4); + this.compressedSize = reader.readInt(4); + this.uncompressedSize = reader.readInt(4); + var fileNameLength = reader.readInt(2); + this.extraFieldsLength = reader.readInt(2); + this.fileCommentLength = reader.readInt(2); + this.diskNumberStart = reader.readInt(2); + this.internalFileAttributes = reader.readInt(2); + this.externalFileAttributes = reader.readInt(4); + this.localHeaderOffset = reader.readInt(4); + + if (this.isEncrypted()) { + throw new Error("Encrypted zip are not supported"); + } + + // will be read in the local part, see the comments there + reader.skip(fileNameLength); + this.readExtraFields(reader); + this.parseZIP64ExtraField(reader); + this.fileComment = reader.readData(this.fileCommentLength); + }, + + /** + * Parse the external file attributes and get the unix/dos permissions. + */ + processAttributes: function () { + this.unixPermissions = null; + this.dosPermissions = null; + var madeBy = this.versionMadeBy >> 8; + + // Check if we have the DOS directory flag set. + // We look for it in the DOS and UNIX permissions + // but some unknown platform could set it as a compatibility flag. + this.dir = this.externalFileAttributes & 0x0010 ? true : false; + + if(madeBy === MADE_BY_DOS) { + // first 6 bits (0 to 5) + this.dosPermissions = this.externalFileAttributes & 0x3F; + } + + if(madeBy === MADE_BY_UNIX) { + this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; + // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); + } + + // fail safe : if the name ends with a / it probably means a folder + if (!this.dir && this.fileNameStr.slice(-1) === '/') { + this.dir = true; + } + }, + + /** + * Parse the ZIP64 extra field and merge the info in the current ZipEntry. + * @param {DataReader} reader the reader to use. + */ + parseZIP64ExtraField: function(reader) { + + if (!this.extraFields[0x0001]) { + return; + } + + // should be something, preparing the extra reader + var extraReader = readerFor(this.extraFields[0x0001].value); + + // I really hope that these 64bits integer can fit in 32 bits integer, because js + // won't let us have more. + if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { + this.uncompressedSize = extraReader.readInt(8); + } + if (this.compressedSize === utils.MAX_VALUE_32BITS) { + this.compressedSize = extraReader.readInt(8); + } + if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { + this.localHeaderOffset = extraReader.readInt(8); + } + if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { + this.diskNumberStart = extraReader.readInt(4); + } + }, + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readExtraFields: function(reader) { + var end = reader.index + this.extraFieldsLength, + extraFieldId, + extraFieldLength, + extraFieldValue; + + if (!this.extraFields) { + this.extraFields = {}; + } + + while (reader.index + 4 < end) { + extraFieldId = reader.readInt(2); + extraFieldLength = reader.readInt(2); + extraFieldValue = reader.readData(extraFieldLength); + + this.extraFields[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + + reader.setIndex(end); + }, + /** + * Apply an UTF8 transformation if needed. + */ + handleUTF8: function() { + var decodeParamType = support.uint8array ? "uint8array" : "array"; + if (this.useUTF8()) { + this.fileNameStr = utf8.utf8decode(this.fileName); + this.fileCommentStr = utf8.utf8decode(this.fileComment); + } else { + var upath = this.findExtraFieldUnicodePath(); + if (upath !== null) { + this.fileNameStr = upath; + } else { + // ASCII text or unsupported code page + var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); + this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); + } + + var ucomment = this.findExtraFieldUnicodeComment(); + if (ucomment !== null) { + this.fileCommentStr = ucomment; + } else { + // ASCII text or unsupported code page + var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); + this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); + } + } + }, + + /** + * Find the unicode path declared in the extra field, if any. + * @return {String} the unicode path, null otherwise. + */ + findExtraFieldUnicodePath: function() { + var upathField = this.extraFields[0x7075]; + if (upathField) { + var extraReader = readerFor(upathField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the filename changed, this field is out of date. + if (crc32fn(this.fileName) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(upathField.length - 5)); + } + return null; + }, + + /** + * Find the unicode comment declared in the extra field, if any. + * @return {String} the unicode comment, null otherwise. + */ + findExtraFieldUnicodeComment: function() { + var ucommentField = this.extraFields[0x6375]; + if (ucommentField) { + var extraReader = readerFor(ucommentField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the comment changed, this field is out of date. + if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); + } + return null; + } +}; +module.exports = ZipEntry; + +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ +'use strict'; + +var StreamHelper = require('./stream/StreamHelper'); +var DataWorker = require('./stream/DataWorker'); +var utf8 = require('./utf8'); +var CompressedObject = require('./compressedObject'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * A simple object representing a file in the zip file. + * @constructor + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data + * @param {Object} options the options of the file + */ +var ZipObject = function(name, data, options) { + this.name = name; + this.dir = options.dir; + this.date = options.date; + this.comment = options.comment; + this.unixPermissions = options.unixPermissions; + this.dosPermissions = options.dosPermissions; + + this._data = data; + this._dataBinary = options.binary; + // keep only the compression + this.options = { + compression : options.compression, + compressionOptions : options.compressionOptions + }; +}; + +ZipObject.prototype = { + /** + * Create an internal stream for the content of this object. + * @param {String} type the type of each chunk. + * @return StreamHelper the stream. + */ + internalStream: function (type) { + var result = null, outputType = "string"; + try { + if (!type) { + throw new Error("No output type specified."); + } + outputType = type.toLowerCase(); + var askUnicodeString = outputType === "string" || outputType === "text"; + if (outputType === "binarystring" || outputType === "text") { + outputType = "string"; + } + result = this._decompressWorker(); + + var isUnicodeString = !this._dataBinary; + + if (isUnicodeString && !askUnicodeString) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + if (!isUnicodeString && askUnicodeString) { + result = result.pipe(new utf8.Utf8DecodeWorker()); + } + } catch (e) { + result = new GenericWorker("error"); + result.error(e); + } + + return new StreamHelper(result, outputType, ""); + }, + + /** + * Prepare the content in the asked type. + * @param {String} type the type of the result. + * @param {Function} onUpdate a function to call on each internal update. + * @return Promise the promise of the result. + */ + async: function (type, onUpdate) { + return this.internalStream(type).accumulate(onUpdate); + }, + + /** + * Prepare the content as a nodejs stream. + * @param {String} type the type of each chunk. + * @param {Function} onUpdate a function to call on each internal update. + * @return Stream the stream. + */ + nodeStream: function (type, onUpdate) { + return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); + }, + + /** + * Return a worker for the compressed content. + * @private + * @param {Object} compression the compression object to use. + * @param {Object} compressionOptions the options to use when compressing. + * @return Worker the worker. + */ + _compressWorker: function (compression, compressionOptions) { + if ( + this._data instanceof CompressedObject && + this._data.compression.magic === compression.magic + ) { + return this._data.getCompressedWorker(); + } else { + var result = this._decompressWorker(); + if(!this._dataBinary) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + return CompressedObject.createWorkerFrom(result, compression, compressionOptions); + } + }, + /** + * Return a worker for the decompressed content. + * @private + * @return Worker the worker. + */ + _decompressWorker : function () { + if (this._data instanceof CompressedObject) { + return this._data.getContentWorker(); + } else if (this._data instanceof GenericWorker) { + return this._data; + } else { + return new DataWorker(this._data); + } + } +}; + +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; +var removedFn = function () { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); +}; + +for(var i = 0; i < removedMethods.length; i++) { + ZipObject.prototype[removedMethods[i]] = removedFn; +} +module.exports = ZipObject; + +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ +(function (global){ +'use strict'; +var Mutation = global.MutationObserver || global.WebKitMutationObserver; + +var scheduleDrain; + +{ + if (Mutation) { + var called = 0; + var observer = new Mutation(nextTick); + var element = global.document.createTextNode(''); + observer.observe(element, { + characterData: true + }); + scheduleDrain = function () { + element.data = (called = ++called % 2); + }; + } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { + var channel = new global.MessageChannel(); + channel.port1.onmessage = nextTick; + scheduleDrain = function () { + channel.port2.postMessage(0); + }; + } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { + scheduleDrain = function () { + + // Create a + + - +