Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler
Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
When this method is called, the response to the command will be received after the process is completed. The response consists of a set of variables. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command with retry to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. If the sending of the command fails, because of broker back pressure or network issues the request is retried until the command succeeds. The wait time between retries can be configured on the ZeebeClientBuilder. Per default the wait time is based on power two, which means 2^1 seconds, 2^2 seconds etc. until it reaches the maximum of one minute. More...
Specifies how many handler threads are used by this job worker.
+
The previous defined job handler can be called by multiple threads, to execute more jobs concurrently. Per default one job handler thread is used by an job worker. This means the job handler implementation needs to be thread safe.
+
Note: Job polling is done by a separate thread.
+
Parameters
+
+
threadCount
handler thread count, needs to be larger then zero
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command.
-
Use await ...send(); to wait until the response is available.
-
T response = await command.send();
+
Use await ...Send(); to wait until the response is available.
+
T response = await command.Send();
Parameters
-
timeout
the time span after request should be timed out
+
timeout
the time span after request should be timed out.
+
token
the token that manages the cancellation of the request.
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command with retry to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. If the sending of the command fails, because of broker back pressure or network issues the request is retried until the command succeeds. The wait time between retries can be configured on the ZeebeClientBuilder. Per default the wait time is based on power two, which means 2^1 seconds, 2^2 seconds etc. until it reaches the maximum of one minute. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command with retry to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. If the sending of the command fails, because of broker back pressure or network issues the request is retried until the command succeeds. The wait time between retries can be configured on the ZeebeClientBuilder. Per default the wait time is based on power two, which means 2^1 seconds, 2^2 seconds etc. until it reaches the maximum of one minute.
+
Use await ...SendWithRetry(); to wait until the response is available.
+
T response = await command.SendWithRetry();
+
Parameters
+
+
timeout
the time span after request should be timed out
+
token
the token that manages the cancellation of the request.
+
+
+
+
Returns
a task tracking state of success/failure of the command.
+
+
+
+The documentation for this interface was generated from the following file:
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command with retry to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. If the sending of the command fails, because of broker back pressure or network issues the request is retried until the command succeeds. The wait time between retries can be configured on the ZeebeClientBuilder. Per default the wait time is based on power two, which means 2^1 seconds, 2^2 seconds etc. until it reaches the maximum of one minute. More...
+
+
+The documentation for this interface was generated from the following file:
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Uses the given duration provider for the send retries. On each retry, the duration to wait is calculated by calling sleepDurationProvider with the current retry number (1 for first retry, 2 for second etc) More...
Uses the given duration provider for the send retries. On each retry, the duration to wait is calculated by calling sleepDurationProvider with the current retry number (1 for first retry, 2 for second etc)
+
This is an optional configuration. Per default the wait time provider provides base two wait time, 2^1 seconds, 2^2 seconds, 2^3 seconds etc. until one minute is reached.
+
Parameters
+
+
sleepDurationProvider
The function that provides the duration to wait for for a particular retry attempt.
+
+
+
+
Returns
the final step builder
+
The documentation for this interface was generated from the following file:
Uses the given duration provider for the send retries. On each retry, the duration to wait is calculated by calling sleepDurationProvider with the current retry number (1 for first retry, 2 for second etc) More...
The Camunda Cloud Cluster contact point, which should be used to communicate with. It is equal to the 'ZEEBE_ADDRESS' which you get from the Camunda Cloud Credentials. This will be used internally as OAuth audience as well. More...
The Camunda Cloud Cluster contact point, which should be used to communicate with. It is equal to the 'ZEEBE_ADDRESS' which you get from the Camunda Cloud Credentials. This will be used internally as OAuth audience as well.
+
Parameters
+
+
contactPoint
the audience, which is normally a domain name
+
+
+
+
Returns
the next step in building a ICamundaCloudClient
+
+
+
+The documentation for this interface was generated from the following file:
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Set the BPMN process id of the process to create an instance of. This is the static id of the process in the BPMN XML (i.e. "<bpmn:process id='my-process'>"). More...
Set the key of the process to create an instance of. The key is assigned by the broker while deploying the process. It can be picked from the deployment or process event. More...
Set the BPMN process id of the process to create an instance of. This is the static id of the process in the BPMN XML (i.e. "<bpmn:process id='my-process'>").
Set the key of the process to create an instance of. The key is assigned by the broker while deploying the process. It can be picked from the deployment or process event.
+
Parameters
+
+
processDefinitionKey
the key of the process
+
+
+
+
Returns
the builder for this command
+
+
+
+The documentation for this interface was generated from the following file:
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
The variables will be merged strictly into the local scope (as indicated by the given elementInstanceKey); this means the variables is not propagated to upper scopes. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Set the version of the process to create an instance of. The version is assigned by the broker while deploying the process. It can be picked from the deployment or process event. More...
Set the version of the process to create an instance of. The version is assigned by the broker while deploying the process. It can be picked from the deployment or process event.
+
Parameters
+
+
version
the version of the process
+
+
+
+
Returns
the builder for this command
+
+
+
+The documentation for this interface was generated from the following file:
Sends the command to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. More...
Sends the command with retry to the Zeebe broker. This operation is asynchronous. In case of success, the task returns the event that was generated by the Zeebe broker in response to the command. If the sending of the command fails, because of broker back pressure or network issues the request is retried until the command succeeds. The wait time between retries can be configured on the ZeebeClientBuilder. Per default the wait time is based on power two, which means 2^1 seconds, 2^2 seconds etc. until it reaches the maximum of one minute. More...
Generated on Tue Jan 28 2020 21:49:16 for Zeebe C# Client by
-
- 1.8.17
+
Generated on Tue May 11 2021 15:19:16 for Zeebe C# Client by 1.9.1
diff --git a/docs/doxygen.css b/docs/doxygen.css
index 73ecbb2c..ffbff022 100644
--- a/docs/doxygen.css
+++ b/docs/doxygen.css
@@ -1,4 +1,4 @@
-/* The standard CSS for doxygen 1.8.17 */
+/* The standard CSS for doxygen 1.9.1 */
body, table, div, p, dl {
font: 400 14px/22px Roboto,sans-serif;
@@ -66,7 +66,7 @@ p.startli, p.startdd {
margin-top: 2px;
}
-th p.starttd, p.intertd, p.endtd {
+th p.starttd, th p.intertd, th p.endtd {
font-size: 100%;
font-weight: 700;
}
@@ -103,30 +103,96 @@ caption {
}
span.legend {
- font-size: 70%;
- text-align: center;
+ font-size: 70%;
+ text-align: center;
}
h3.version {
- font-size: 90%;
- text-align: center;
+ font-size: 90%;
+ text-align: center;
}
-div.qindex, div.navtab{
- background-color: #EBEFF6;
- border: 1px solid #A3B4D7;
- text-align: center;
+div.navtab {
+ border-right: 1px solid #A3B4D7;
+ padding-right: 15px;
+ text-align: right;
+ line-height: 110%;
+}
+
+div.navtab table {
+ border-spacing: 0;
}
-div.qindex, div.navpath {
+td.navtab {
+ padding-right: 6px;
+ padding-left: 6px;
+}
+td.navtabHL {
+ background-image: url('tab_a.png');
+ background-repeat:repeat-x;
+ padding-right: 6px;
+ padding-left: 6px;
+}
+
+td.navtabHL a, td.navtabHL a:visited {
+ color: #fff;
+ text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
+}
+
+a.navtab {
+ font-weight: bold;
+}
+
+div.qindex{
+ text-align: center;
width: 100%;
line-height: 140%;
+ font-size: 130%;
+ color: #A0A0A0;
}
-div.navtab {
- margin-right: 15px;
+dt.alphachar{
+ font-size: 180%;
+ font-weight: bold;
+}
+
+.alphachar a{
+ color: black;
+}
+
+.alphachar a:hover, .alphachar a:visited{
+ text-decoration: none;
+}
+
+.classindex dl {
+ padding: 25px;
+ column-count:1
+}
+
+.classindex dd {
+ display:inline-block;
+ margin-left: 50px;
+ width: 90%;
+ line-height: 1.15em;
+}
+
+.classindex dl.odd {
+ background-color: #F8F9FC;
+}
+
+@media(min-width: 1120px) {
+ .classindex dl {
+ column-count:2
+ }
+}
+
+@media(min-width: 1320px) {
+ .classindex dl {
+ column-count:3
+ }
}
+
/* @group Link Styling */
a {
@@ -143,17 +209,6 @@ a:hover {
text-decoration: underline;
}
-a.qindex {
- font-weight: bold;
-}
-
-a.qindexHL {
- font-weight: bold;
- background-color: #9CAFD4;
- color: #FFFFFF;
- border: 1px double #869DCA;
-}
-
.contents a.qindexHL:visited {
color: #FFFFFF;
}
@@ -1358,10 +1413,12 @@ dl.citelist dt {
font-weight:bold;
margin-right:10px;
padding:5px;
+ text-align:right;
+ width:52px;
}
dl.citelist dd {
- margin:2px 0;
+ margin:2px 0 2px 72px;
padding:5px 0;
}
@@ -1424,6 +1481,12 @@ div.toc li.level4 {
margin-left: 45px;
}
+span.emoji {
+ /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html
+ * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort;
+ */
+}
+
.PageDocRTL-title div.toc li.level1 {
margin-left: 0 !important;
margin-right: 0;
@@ -1661,47 +1724,6 @@ tr.heading h2 {
/* @group Markdown */
-/*
-table.markdownTable {
- border-collapse:collapse;
- margin-top: 4px;
- margin-bottom: 4px;
-}
-
-table.markdownTable td, table.markdownTable th {
- border: 1px solid #2D4068;
- padding: 3px 7px 2px;
-}
-
-table.markdownTableHead tr {
-}
-
-table.markdownTableBodyLeft td, table.markdownTable th {
- border: 1px solid #2D4068;
- padding: 3px 7px 2px;
-}
-
-th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone {
- background-color: #374F7F;
- color: #FFFFFF;
- font-size: 110%;
- padding-bottom: 4px;
- padding-top: 5px;
-}
-
-th.markdownTableHeadLeft {
- text-align: left
-}
-
-th.markdownTableHeadRight {
- text-align: right
-}
-
-th.markdownTableHeadCenter {
- text-align: center
-}
-*/
-
table.markdownTable {
border-collapse:collapse;
margin-top: 4px;
diff --git a/docs/doxygen.svg b/docs/doxygen.svg
new file mode 100644
index 00000000..d42dad52
--- /dev/null
+++ b/docs/doxygen.svg
@@ -0,0 +1,26 @@
+
+
diff --git a/docs/dynsections.js b/docs/dynsections.js
index ea0a7b39..3174bd7b 100644
--- a/docs/dynsections.js
+++ b/docs/dynsections.js
@@ -1,25 +1,26 @@
/*
- @licstart The following is the entire license notice for the
- JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
- Copyright (C) 1997-2017 by Dimitri van Heesch
+ The MIT License (MIT)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ Copyright (C) 1997-2020 by Dimitri van Heesch
- This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
- @licend The above is the entire license notice
- for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
function toggleVisibility(linkObj)
{
diff --git a/docs/functions.html b/docs/functions.html
index ec5824e6..41bba97c 100644
--- a/docs/functions.html
+++ b/docs/functions.html
@@ -3,7 +3,7 @@
-
+
Zeebe C# Client: Class Members
@@ -24,9 +24,10 @@
Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler
Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler
Generated on Tue Jan 28 2020 21:49:16 for Zeebe C# Client by
-
- 1.8.17
+
Generated on Tue May 11 2021 15:19:16 for Zeebe C# Client by 1.9.1
diff --git a/docs/menu.js b/docs/menu.js
index 433c15b8..2fe2214f 100644
--- a/docs/menu.js
+++ b/docs/menu.js
@@ -1,25 +1,26 @@
/*
- @licstart The following is the entire license notice for the
- JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
- Copyright (C) 1997-2017 by Dimitri van Heesch
+ The MIT License (MIT)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ Copyright (C) 1997-2020 by Dimitri van Heesch
- This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
- @licend The above is the entire license notice
- for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
function initMenu(relPath,searchEnabled,serverSide,searchPage,search) {
function makeTree(data,relPath) {
@@ -40,9 +41,9 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) {
$('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu');
if (searchEnabled) {
if (serverSide) {
- $('#main-menu').append('
');
+ $('#main-menu').append('
');
} else {
- $('#main-menu').append('
');
+ $('#main-menu').append('
');
}
}
$('#main-menu').smartmenus();
diff --git a/docs/menudata.js b/docs/menudata.js
index f5f329e8..d11211d5 100644
--- a/docs/menudata.js
+++ b/docs/menudata.js
@@ -1,24 +1,26 @@
/*
-@licstart The following is the entire license notice for the
-JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
-Copyright (C) 1997-2019 by Dimitri van Heesch
+ The MIT License (MIT)
-This program is free software; you can redistribute it and/or modify
-it under the terms of version 2 of the GNU General Public License as published by
-the Free Software Foundation
+ Copyright (C) 1997-2020 by Dimitri van Heesch
-This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
-You should have received a copy of the GNU General Public License along
-with this program; if not, write to the Free Software Foundation, Inc.,
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
-@licend The above is the entire license notice
-for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
var menudata={children:[
{text:"Main Page",url:"index.html"},
@@ -40,6 +42,7 @@ var menudata={children:[
{text:"d",url:"functions.html#index_d"},
{text:"e",url:"functions.html#index_e"},
{text:"f",url:"functions.html#index_f"},
+{text:"g",url:"functions.html#index_g"},
{text:"h",url:"functions.html#index_h"},
{text:"i",url:"functions.html#index_i"},
{text:"j",url:"functions.html#index_j"},
@@ -59,6 +62,7 @@ var menudata={children:[
{text:"a",url:"functions_func.html#index_a"},
{text:"b",url:"functions_func.html#index_b"},
{text:"c",url:"functions_func.html#index_c"},
+{text:"d",url:"functions_func.html#index_d"},
{text:"e",url:"functions_func.html#index_e"},
{text:"f",url:"functions_func.html#index_f"},
{text:"h",url:"functions_func.html#index_h"},
@@ -81,6 +85,7 @@ var menudata={children:[
{text:"c",url:"functions_prop.html#index_c"},
{text:"d",url:"functions_prop.html#index_d"},
{text:"e",url:"functions_prop.html#index_e"},
+{text:"g",url:"functions_prop.html#index_g"},
{text:"h",url:"functions_prop.html#index_h"},
{text:"i",url:"functions_prop.html#index_i"},
{text:"j",url:"functions_prop.html#index_j"},
diff --git a/docs/namespacemembers.html b/docs/namespacemembers.html
index 53d9349c..07db7701 100644
--- a/docs/namespacemembers.html
+++ b/docs/namespacemembers.html
@@ -3,7 +3,7 @@
-
+
Zeebe C# Client: Namespace Members
@@ -24,9 +24,10 @@
+
Zeebe C# Client
- 0.15.0
+ 1.0.0
C# Client to communicate with an Zeebe Gateway
@@ -35,10 +36,10 @@
-
+
@@ -84,6 +85,9 @@
Here is a list of all documented namespace members with links to the namespaces they belong to:
Represents an job worker that performs jobs of a certain type. While a registration is open, the worker continuously receives jobs from the broker and hands them to a registered JobHandler
The client to communicate with a Zeebe gateway/cluster
@@ -103,9 +177,7 @@
-
Generated on Tue Jan 28 2020 21:49:16 for Zeebe C# Client by
-
- 1.8.17
+
Generated on Tue May 11 2021 15:19:16 for Zeebe C# Client by 1.9.1
diff --git a/docs/navtree.js b/docs/navtree.js
index edc31efc..1e272d31 100644
--- a/docs/navtree.js
+++ b/docs/navtree.js
@@ -1,24 +1,26 @@
/*
- @licstart The following is the entire license notice for the
- JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
- Copyright (C) 1997-2019 by Dimitri van Heesch
+ The MIT License (MIT)
- This program is free software; you can redistribute it and/or modify
- it under the terms of version 2 of the GNU General Public License as
- published by the Free Software Foundation.
+ Copyright (C) 1997-2020 by Dimitri van Heesch
- This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
- @licend The above is the entire license notice
- for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
var navTreeSubIndices = new Array();
var arrowDown = '▼';
diff --git a/docs/navtreedata.js b/docs/navtreedata.js
index 02435412..9fef9cac 100644
--- a/docs/navtreedata.js
+++ b/docs/navtreedata.js
@@ -1,30 +1,33 @@
/*
-@licstart The following is the entire license notice for the
-JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
-Copyright (C) 1997-2019 by Dimitri van Heesch
+ The MIT License (MIT)
-This program is free software; you can redistribute it and/or modify
-it under the terms of version 2 of the GNU General Public License as published by
-the Free Software Foundation
+ Copyright (C) 1997-2020 by Dimitri van Heesch
-This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
-You should have received a copy of the GNU General Public License along
-with this program; if not, write to the Free Software Foundation, Inc.,
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
-@licend The above is the entire license notice
-for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
var NAVTREE =
[
[ "Zeebe C# Client", "index.html", [
[ "The Zeebe C# client documentation", "index.html", [
[ "API documentation", "index.html#API", null ],
+ [ "Cloud-Example", "index.html#Cloud-Example", null ],
[ "Example", "index.html#Example", null ]
] ],
[ "Namespaces", "namespaces.html", [
diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js
index 4bbd4db1..e9796914 100644
--- a/docs/navtreeindex0.js
+++ b/docs/navtreeindex0.js
@@ -2,186 +2,206 @@ var NAVTREEINDEX0 =
{
"annotated.html":[2,0],
"classes.html":[2,1],
-"d0/d39/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IResolveIncidentCommandStep1.html":[2,0,0,0,0,1,17],
-"d0/d59/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html":[2,0,0,0,0,1,7],
-"d0/d59/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html#a32b323f25ad625f1482c4b96da1cfe1f":[2,0,0,0,0,1,7,1],
-"d0/d59/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html#ade8df792ab21431111a886e87636267d":[2,0,0,0,0,1,7,0],
+"d0/d39/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IResolveIncidentCommandStep1.html":[2,0,0,0,0,1,18],
"d0/d9e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep2.html":[2,0,0,0,0,1,1],
"d0/d9e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep2.html#a812d2062fe9630879fdcba09ac1d93a0":[2,0,0,0,0,1,1,0],
-"d0/dab/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPublishMessageResponse.html":[2,0,0,0,0,2,8],
-"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html":[2,0,0,0,0,3,1],
-"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html#a761aec12d30a603b1cb0c0ce2d5eb5e7":[2,0,0,0,0,3,1,1],
-"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html#a8376a25e687c47071d2e52270af6b6a5":[2,0,0,0,0,3,1,0],
+"d0/dab/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPublishMessageResponse.html":[2,0,0,0,0,3,11],
+"d0/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html":[2,0,0,0,0,1,7],
+"d0/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html#a40d4cef0731118ab14bdc9ae4b4cb007":[2,0,0,0,0,1,7,0],
+"d0/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep3.html#a46f6eddd29cace93eebbfe077ed09d39":[2,0,0,0,0,1,7,1],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html":[2,0,0,0,0,3,9],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#a35c08001e85b015a9b42016c71bccdc7":[2,0,0,0,0,3,9,1],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#aa4225972fbdf911398023ba0e0bef459":[2,0,0,0,0,3,9,2],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#aba0a31a66cd04948ae332debcbb6bbc5":[2,0,0,0,0,3,9,3],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#ae17c9d361622d6ec1318ddbca2ef110b":[2,0,0,0,0,3,9,0],
+"d0/dd0/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#ae3fd7cbfefa940fbb1baf3274da59ad3":[2,0,0,0,0,3,9,4],
+"d1/d61/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderFinalStep.html":[2,0,0,0,0,0,4],
+"d1/d61/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderFinalStep.html#a674598084fe70a2550d667b5e3ae1c98":[2,0,0,0,0,0,4,2],
+"d1/d61/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderFinalStep.html#a8de8d1febe93685c220a9b7e381e529e":[2,0,0,0,0,0,4,0],
+"d1/d61/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderFinalStep.html#ab969cc775e9253e23bf870ae99fa2ae8":[2,0,0,0,0,0,4,1],
+"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html":[2,0,0,0,0,4,1],
+"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html#a761aec12d30a603b1cb0c0ce2d5eb5e7":[2,0,0,0,0,4,1,1],
+"d1/dfe/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorker.html#a8376a25e687c47071d2e52270af6b6a5":[2,0,0,0,0,4,1,0],
"d2/d24/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IAccessTokenSupplier.html":[2,0,0,0,0,0,0],
"d2/d53/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICompleteJobCommandStep1.html":[2,0,0,0,0,1,4],
"d2/d53/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICompleteJobCommandStep1.html#a496c63444b672c49a974556bb34edefe":[2,0,0,0,0,1,4,0],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html":[2,0,0,0,0,3,4],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a0bd0858260a6ec4d2397b0ff97645825":[2,0,0,0,0,3,4,7],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a4fc6453b1f3c5f4a743829fb3fa26cec":[2,0,0,0,0,3,4,1],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a61390bdd234664eca6f2756e12192aec":[2,0,0,0,0,3,4,6],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a71000a7612f5c8a54b3e01e997897218":[2,0,0,0,0,3,4,2],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ab3049749211dc9ee4b145c02e99952f8":[2,0,0,0,0,3,4,5],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ab5b0887bb1bb8afd2d1259b5c690205a":[2,0,0,0,0,3,4,0],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ae13a82bafc0d7c1ffe5b9b9273106843":[2,0,0,0,0,3,4,8],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#aea7602ab97985620a6d8c2454e41ff3e":[2,0,0,0,0,3,4,4],
-"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#af71bd628edb5821bd8938a7b273b6426":[2,0,0,0,0,3,4,3],
-"d2/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep1.html":[2,0,0,0,0,1,18],
-"d2/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep1.html#a9b7b67b5388ccd021c03ddb922744192":[2,0,0,0,0,1,18,0],
-"d2/d6e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html":[2,0,0,0,0,2,14],
-"d2/d6e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#a998493ef6ed5ab00531fd51e43a0a960":[2,0,0,0,0,2,14,0],
-"d2/d6e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#aac9bbf138a8657377e4336f3dea2940c":[2,0,0,0,0,2,14,3],
-"d2/d6e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#af11832046d6a60c90b0bcef7018e7e6a":[2,0,0,0,0,2,14,1],
-"d2/d6e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#af56573e1a0c40c1b10ea7c251233a971":[2,0,0,0,0,2,14,2],
-"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html":[2,0,0,0,0,0,6],
-"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html#a8d021cf10ce6004fc755a6693c5ef314":[2,0,0,0,0,0,6,0],
-"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html#a9b06024e5747fb5133fed380ca82f42e":[2,0,0,0,0,0,6,1],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html":[2,0,0,0,0,2,15],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#a1e886a6767c31c41ff79bbc1ba80428b":[2,0,0,0,0,2,15,2],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#a49aea0b919d5da4b898a7df7a9aca463":[2,0,0,0,0,2,15,0],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#a7b54ca53a74cc19cdd3a2bd8a7e13231":[2,0,0,0,0,2,15,4],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#ad609d5aa011f5cb8a659f499c58180bb":[2,0,0,0,0,2,15,3],
-"d2/d7e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResult.html#aff138fc1588ad4db4c187cbc3b1c04b6":[2,0,0,0,0,2,15,1],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html":[2,0,0,0,0,4,4],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a0bd0858260a6ec4d2397b0ff97645825":[2,0,0,0,0,4,4,8],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a4fc6453b1f3c5f4a743829fb3fa26cec":[2,0,0,0,0,4,4,1],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a61390bdd234664eca6f2756e12192aec":[2,0,0,0,0,4,4,7],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#a71000a7612f5c8a54b3e01e997897218":[2,0,0,0,0,4,4,2],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#aa4c868eed67e29b53888f89bf27b29a7":[2,0,0,0,0,4,4,3],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ab3049749211dc9ee4b145c02e99952f8":[2,0,0,0,0,4,4,6],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ab5b0887bb1bb8afd2d1259b5c690205a":[2,0,0,0,0,4,4,0],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#ae13a82bafc0d7c1ffe5b9b9273106843":[2,0,0,0,0,4,4,9],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#aea7602ab97985620a6d8c2454e41ff3e":[2,0,0,0,0,4,4,5],
+"d2/d59/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep3.html#af71bd628edb5821bd8938a7b273b6426":[2,0,0,0,0,4,4,4],
+"d2/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep1.html":[2,0,0,0,0,1,19],
+"d2/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep1.html#a9b7b67b5388ccd021c03ddb922744192":[2,0,0,0,0,1,19,0],
+"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html":[2,0,0,0,0,0,10],
+"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html#a8d021cf10ce6004fc755a6693c5ef314":[2,0,0,0,0,0,10,0],
+"d2/d7d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientBuilder.html#a9b06024e5747fb5133fed380ca82f42e":[2,0,0,0,0,0,10,1],
"d2/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandStep.html":[2,0,0,0,0,1,13],
-"d2/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandStep.html#a549724ab172149ab5128fff523592aa5":[2,0,0,0,0,1,13,0],
-"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html":[2,0,0,0,0,0,8],
-"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#a366ccabef03e52e5d7fe8621c5bff75d":[2,0,0,0,0,0,8,1],
-"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#ac26cfa775cbfd651109c526d47f317a6":[2,0,0,0,0,0,8,0],
-"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#ad7318e868930ee33862721399242783f":[2,0,0,0,0,0,8,2],
-"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html":[2,0,0,0,0,0,1],
-"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html#a29ec1b3e2ed3345ac058a97e1a059bd4":[2,0,0,0,0,0,1,0],
-"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html#a4e6552c929a81840d3e003a685b9f4fd":[2,0,0,0,0,0,1,1],
-"d3/d3e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ICompleteJobResponse.html":[2,0,0,0,0,2,3],
-"d3/d85/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep2.html":[2,0,0,0,0,1,21],
-"d3/d85/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep2.html#a99091a400a4b2aced2a9edf5ba5f230a":[2,0,0,0,0,1,21,0],
+"d2/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandStep.html#a922dde6f442d6d80b648549b5b226734":[2,0,0,0,0,1,13,0],
+"d2/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandStep.html#adc0ff5f12e104c7086bb5e8c821b0dba":[2,0,0,0,0,1,13,1],
+"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html":[2,0,0,0,0,0,11],
+"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#a366ccabef03e52e5d7fe8621c5bff75d":[2,0,0,0,0,0,11,1],
+"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#ac26cfa775cbfd651109c526d47f317a6":[2,0,0,0,0,0,11,0],
+"d2/df5/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientTransportBuilder.html#ad7318e868930ee33862721399242783f":[2,0,0,0,0,0,11,2],
+"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html":[2,0,0,0,0,0,5],
+"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html#a29ec1b3e2ed3345ac058a97e1a059bd4":[2,0,0,0,0,0,5,0],
+"d3/d08/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilder.html#a4e6552c929a81840d3e003a685b9f4fd":[2,0,0,0,0,0,5,1],
+"d3/d3e/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ICompleteJobResponse.html":[2,0,0,0,0,3,3],
+"d3/d85/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep2.html":[2,0,0,0,0,1,22],
+"d3/d85/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep2.html#a99091a400a4b2aced2a9edf5ba5f230a":[2,0,0,0,0,1,22,0],
"d4/d1d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep1.html":[2,0,0,0,0,1,0],
"d4/d1d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep1.html#ae28f36413983e55d97b5db9aa7ed5a59":[2,0,0,0,0,1,0,0],
-"d4/d22/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep1.html":[2,0,0,0,0,1,20],
-"d4/d22/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep1.html#ad9f3eeda0f9ee82c25e425109f411201":[2,0,0,0,0,1,20,0],
-"d4/d30/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html":[2,0,0,0,0,1,5],
-"d4/d30/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html#a1815a45b9dfe7b12b33e319ba3c51441":[2,0,0,0,0,1,5,1],
-"d4/d30/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html#a2013fe403467ebd43ca91278055c2786":[2,0,0,0,0,1,5,0],
-"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html":[2,0,0,0,0,1,16],
-"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#a0be9cde9a6d1b0e1dc3562d913ccd814":[2,0,0,0,0,1,16,1],
-"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#a71ff5fcdf6f532aad6bbe0abc2ec19e8":[2,0,0,0,0,1,16,0],
-"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#adbf07d88b1abf698f0502a047b2405a2":[2,0,0,0,0,1,16,2],
-"d5/d31/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IActivateJobsResponse.html":[2,0,0,0,0,2,0],
-"d5/d31/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IActivateJobsResponse.html#a64a9a9c685df4a474ace2528601fc7e4":[2,0,0,0,0,2,0,0],
-"d5/d42/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep2.html":[2,0,0,0,0,3,3],
-"d5/d42/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep2.html#aca9a5ca68a4d650d8a3ab952da39b120":[2,0,0,0,0,3,3,0],
+"d4/d22/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep1.html":[2,0,0,0,0,1,21],
+"d4/d22/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IThrowErrorCommandStep1.html#ad9f3eeda0f9ee82c25e425109f411201":[2,0,0,0,0,1,21,0],
+"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html":[2,0,0,0,0,1,17],
+"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#a0be9cde9a6d1b0e1dc3562d913ccd814":[2,0,0,0,0,1,17,1],
+"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#a71ff5fcdf6f532aad6bbe0abc2ec19e8":[2,0,0,0,0,1,17,0],
+"d5/d02/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep3.html#adbf07d88b1abf698f0502a047b2405a2":[2,0,0,0,0,1,17,2],
+"d5/d31/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IActivateJobsResponse.html":[2,0,0,0,0,3,0],
+"d5/d31/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IActivateJobsResponse.html#a64a9a9c685df4a474ace2528601fc7e4":[2,0,0,0,0,3,0,0],
+"d5/d42/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep2.html":[2,0,0,0,0,4,3],
+"d5/d42/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep2.html#aca9a5ca68a4d650d8a3ab952da39b120":[2,0,0,0,0,4,3,1],
+"d5/d42/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep2.html#afe848cc8c082c14389010b44d98dc734":[2,0,0,0,0,4,3,0],
+"d5/d5e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandWithRetryStep.html":[2,0,0,0,0,1,14],
+"d5/d5e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFinalCommandWithRetryStep.html#a3a465da77923d1b9906246cd298c7a07":[2,0,0,0,0,1,14,0],
"d5/d66/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFailJobCommandStep2.html":[2,0,0,0,0,1,12],
"d5/d66/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFailJobCommandStep2.html#ae19730f1e14442e22acd7c289ad0b886":[2,0,0,0,0,1,12,0],
-"d5/dae/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ITopologyRequestStep1.html":[2,0,0,0,0,1,22],
-"d5/db4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandBuilderStep2.html":[2,0,0,0,0,1,9],
-"d5/dc7/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep1.html":[2,0,0,0,0,3,2],
-"d5/dc7/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep1.html#a751286c47f00b2b07eb221f21143079c":[2,0,0,0,0,3,2,0],
+"d5/d79/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICancelProcessInstanceCommandStep1.html":[2,0,0,0,0,1,3],
+"d5/dae/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ITopologyRequestStep1.html":[2,0,0,0,0,1,23],
+"d5/dc7/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep1.html":[2,0,0,0,0,4,2],
+"d5/dc7/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobWorkerBuilderStep1.html#a751286c47f00b2b07eb221f21143079c":[2,0,0,0,0,4,2,0],
"d5/df7/namespaceZeebe_1_1Client_1_1Api.html":[1,0,0,0,0],
-"d5/df7/namespaceZeebe_1_1Client_1_1Api.html":[2,0,0,0,0],
"d6/d18/namespaceZeebe.html":[1,0,0],
-"d6/d18/namespaceZeebe.html":[2,0,0],
-"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html":[2,0,0,0,0,0,7],
-"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html#a3ccb013a123c5515eec311e7b03340d1":[2,0,0,0,0,0,7,0],
-"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html":[2,0,0,0,0,0,9],
-"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html#a6629538576bbb21ae5018582c2e0bc50":[2,0,0,0,0,0,9,1],
-"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html#a7e54e81da971f5555863ef55aa222c5f":[2,0,0,0,0,0,9,0],
-"d6/dd9/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderFinalStep.html":[2,0,0,0,0,0,2],
-"d6/dd9/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderFinalStep.html#aafb55f3b1b1d1d1d39d1264894aaff22":[2,0,0,0,0,0,2,0],
-"d7/d1a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ISetVariablesResponse.html":[2,0,0,0,0,2,10],
-"d7/d1a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ISetVariablesResponse.html#a5c36668113107043d2eebad84a8121df":[2,0,0,0,0,2,10,0],
-"d7/d26/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IThrowErrorResponse.html":[2,0,0,0,0,2,11],
-"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html":[2,0,0,0,0,2,7],
-"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#a20b47003094b2e70d03e06a25200a2fd":[2,0,0,0,0,2,7,2],
-"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#aa1ec8bca3967e82f8caf05f3d18d9470":[2,0,0,0,0,2,7,1],
-"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#aeb042974a9a3c564e767415a0dcaac6e":[2,0,0,0,0,2,7,0],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html":[2,0,0,0,0,2,1],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a10e83484ed5a2632a390e4ffe674f664":[2,0,0,0,0,2,1,3],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a4e43bc60b0945a82722cedfd4bd742cd":[2,0,0,0,0,2,1,4],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a5d83f8b66d884acdefe4307e8e9bcbf8":[2,0,0,0,0,2,1,2],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a9d4d9710bab7f7944c1fad18e41919a9":[2,0,0,0,0,2,1,0],
-"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#adf89f92afa01a33f813cefe6fd7f3137":[2,0,0,0,0,2,1,1],
+"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html":[2,0,0,0,0,0,13],
+"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html#a3ccb013a123c5515eec311e7b03340d1":[2,0,0,0,0,0,13,0],
+"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html#a6b4cee13545ef76638772add30fbd65d":[2,0,0,0,0,0,13,1],
+"d6/d2b/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeClientFinalBuildStep.html#a9277829317816183d43b78a2505a6140":[2,0,0,0,0,0,13,2],
+"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html":[2,0,0,0,0,0,12],
+"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html#a6629538576bbb21ae5018582c2e0bc50":[2,0,0,0,0,0,12,1],
+"d6/d64/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1IZeebeSecureClientBuilder.html#a7e54e81da971f5555863ef55aa222c5f":[2,0,0,0,0,0,12,0],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html":[2,0,0,0,0,1,9],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a2f1c9d78701a432e2112f33453580af8":[2,0,0,0,0,1,9,2],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a346f9d1aa3a05e0c513da21ef388a4e0":[2,0,0,0,0,1,9,3],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a956ef2269b6d0dbc781467f6ae518eed":[2,0,0,0,0,1,9,1],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#ab6dea324ae55a3bd1a6c331ee210d2d2":[2,0,0,0,0,1,9,0],
+"d6/db0/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#af1dfd8345a6b0862704bfd323893a991":[2,0,0,0,0,1,9,4],
+"d6/dd9/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderFinalStep.html":[2,0,0,0,0,0,9],
+"d6/dd9/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderFinalStep.html#aafb55f3b1b1d1d1d39d1264894aaff22":[2,0,0,0,0,0,9,0],
+"d7/d02/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilder.html":[2,0,0,0,0,0,1],
+"d7/d02/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilder.html#a5aa016e383cdfb542d3e3c6367ef1aeb":[2,0,0,0,0,0,1,0],
+"d7/d02/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilder.html#a7dbd35f00ff05ec985023270d26c9ad4":[2,0,0,0,0,0,1,1],
+"d7/d12/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderStep1.html":[2,0,0,0,0,0,2],
+"d7/d12/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderStep1.html#abc61e3608e882c6aacaf3ba026113ee4":[2,0,0,0,0,0,2,0],
+"d7/d1a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ISetVariablesResponse.html":[2,0,0,0,0,3,13],
+"d7/d1a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ISetVariablesResponse.html#a5c36668113107043d2eebad84a8121df":[2,0,0,0,0,3,13,0],
+"d7/d26/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IThrowErrorResponse.html":[2,0,0,0,0,3,14],
+"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html":[2,0,0,0,0,3,7],
+"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#a20b47003094b2e70d03e06a25200a2fd":[2,0,0,0,0,3,7,2],
+"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#aa1ec8bca3967e82f8caf05f3d18d9470":[2,0,0,0,0,3,7,1],
+"d7/d34/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IPartitionInfo.html#aeb042974a9a3c564e767415a0dcaac6e":[2,0,0,0,0,3,7,0],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html":[2,0,0,0,0,3,1],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a10e83484ed5a2632a390e4ffe674f664":[2,0,0,0,0,3,1,3],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a4e43bc60b0945a82722cedfd4bd742cd":[2,0,0,0,0,3,1,4],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a5d83f8b66d884acdefe4307e8e9bcbf8":[2,0,0,0,0,3,1,2],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#a9d4d9710bab7f7944c1fad18e41919a9":[2,0,0,0,0,3,1,0],
+"d7/dce/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IBrokerInfo.html#adf89f92afa01a33f813cefe6fd7f3137":[2,0,0,0,0,3,1,1],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html":[2,0,0,0,1],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a04edceb7abb5195c0c35efa0de843236":[2,0,0,0,1,9],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a10370b9ac0ebd7feca4d63e638ddd14c":[2,0,0,0,1,8],
-"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a6eb217d763c83f387434f9626e6f5716":[2,0,0,0,1,3],
+"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a2476cea57ad101c9ced9097f700638a1":[2,0,0,0,1,3],
+"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a377d14ed8a060b6a652b24a369833c98":[2,0,0,0,1,1],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a715622caf01c5e5b92bea55df0aefe95":[2,0,0,0,1,6],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#a83b77ca41cbde1947a976fa1193ded4a":[2,0,0,0,1,7],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#ab8ab0c28694249cc682e32a24cc7889a":[2,0,0,0,1,4],
-"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#abfe56a9ebe1d96ee916d57ef133c1406":[2,0,0,0,1,2],
-"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#ac6f46aece8181403f4cefc9adfee2d8b":[2,0,0,0,1,1],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#ad551d03f526c8694b2a0be7f8dc26bab":[2,0,0,0,1,5],
+"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#ae4878e746b228217ce748cb59a2e86e4":[2,0,0,0,1,2],
"d7/dd6/interfaceZeebe_1_1Client_1_1IZeebeClient.html#ae9ab9cf439f070dd5c785a2aa87e2303":[2,0,0,0,1,0],
-"d7/df3/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IUpdateRetriesResponse.html":[2,0,0,0,0,2,13],
-"d8/d4e/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep3.html":[2,0,0,0,0,0,4],
-"d8/d4e/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep3.html#aa6a11f4182e4875184a0231f68347f24":[2,0,0,0,0,0,4,0],
-"d8/d8d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep1.html":[2,0,0,0,0,1,14],
-"d8/d8d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep1.html#a2a9fa9a2a4cab434f5f14a948498f90d":[2,0,0,0,0,1,14,0],
-"d8/dce/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html":[2,0,0,0,0,1,6],
-"d8/dce/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html#a12a41e1f1546fbe4b3a88d774b82f9a1":[2,0,0,0,0,1,6,1],
-"d8/dce/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html#a883928d9ceff62718986b335525a18f2":[2,0,0,0,0,1,6,0],
-"d9/d49/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep2.html":[2,0,0,0,0,1,15],
-"d9/d49/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep2.html#aaea1241ff4493092038763e23c59faf8":[2,0,0,0,0,1,15,0],
+"d7/df3/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IUpdateRetriesResponse.html":[2,0,0,0,0,3,16],
+"d8/d4e/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep3.html":[2,0,0,0,0,0,7],
+"d8/d4e/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep3.html#aa6a11f4182e4875184a0231f68347f24":[2,0,0,0,0,0,7,0],
+"d8/d8d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep1.html":[2,0,0,0,0,1,15],
+"d8/d8d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep1.html#a2a9fa9a2a4cab434f5f14a948498f90d":[2,0,0,0,0,1,15,0],
+"d9/d27/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ICancelProcessInstanceResponse.html":[2,0,0,0,0,3,2],
+"d9/d49/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep2.html":[2,0,0,0,0,1,16],
+"d9/d49/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IPublishMessageCommandStep2.html#aaea1241ff4493092038763e23c59faf8":[2,0,0,0,0,1,16,0],
+"d9/d8a/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderStep2.html":[2,0,0,0,0,0,3],
+"d9/d8a/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudClientBuilderStep2.html#af312e6f9d9129c0882abba20a818833d":[2,0,0,0,0,0,3,0],
"d9/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFailJobCommandStep1.html":[2,0,0,0,0,1,11],
"d9/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IFailJobCommandStep1.html#a507382861c351b0e386537dcac109e4e":[2,0,0,0,0,1,11,0],
"d9/def/namespaceZeebe_1_1Client_1_1Api_1_1Commands.html":[1,0,0,0,0,1],
-"d9/def/namespaceZeebe_1_1Client_1_1Api_1_1Commands.html":[2,0,0,0,0,1],
-"da/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep4.html":[2,0,0,0,0,0,5],
-"da/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep4.html#ae6992079a09d28d9fb5ede3129029cfe":[2,0,0,0,0,0,5,0],
+"da/d46/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandBuilderStep2.html":[2,0,0,0,0,1,10],
+"da/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep4.html":[2,0,0,0,0,0,8],
+"da/d5d/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep4.html#ae6992079a09d28d9fb5ede3129029cfe":[2,0,0,0,0,0,8,0],
"da/d88/namespaceZeebe_1_1Client.html":[1,0,0,0],
-"da/d88/namespaceZeebe_1_1Client.html":[2,0,0,0],
-"da/d9d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep1.html":[2,0,0,0,0,1,23],
-"da/d9d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep1.html#a7e7c2f67174a6ca210a2f08a15c28415":[2,0,0,0,0,1,23,0],
-"da/ddc/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ICancelProcessInstanceResponse.html":[2,0,0,0,0,2,2],
-"db/d2d/namespaceZeebe_1_1Client_1_1Api_1_1Worker.html":[2,0,0,0,0,3],
-"db/d2d/namespaceZeebe_1_1Client_1_1Api_1_1Worker.html":[1,0,0,0,0,3],
-"db/d3b/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html":[2,0,0,0,0,2,16],
-"db/d3b/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#a23dfd7960f2f2d68cf147dbca9927aec":[2,0,0,0,0,2,16,0],
-"db/d3b/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#a5c1b60926da82f26664c21865bd84f93":[2,0,0,0,0,2,16,2],
-"db/d3b/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#a692520a0d9ad0fab734d2eb9619548c5":[2,0,0,0,0,2,16,3],
-"db/d3b/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#a729cb93e042746a09c75b4263011e9b6":[2,0,0,0,0,2,16,1],
-"db/d6f/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICancelProcessInstanceCommandStep1.html":[2,0,0,0,0,1,3],
-"dc/d04/namespaceZeebe_1_1Client_1_1Api_1_1Builder.html":[2,0,0,0,0,0],
+"da/d9d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep1.html":[2,0,0,0,0,1,24],
+"da/d9d/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep1.html#a7e7c2f67174a6ca210a2f08a15c28415":[2,0,0,0,0,1,24,0],
+"db/d2d/namespaceZeebe_1_1Client_1_1Api_1_1Worker.html":[1,0,0,0,0,4],
+"db/d2d/namespaceZeebe_1_1Client_1_1Api_1_1Worker.html#a1ed6b33bbf0290c4ac41ab22d01e52ca":[1,0,0,0,0,4,5],
+"db/d2d/namespaceZeebe_1_1Client_1_1Api_1_1Worker.html#a8e517f013623c95560b142de35a6d33d":[1,0,0,0,0,4,6],
+"db/df6/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html":[2,0,0,0,0,3,10],
+"db/df6/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#a34d9c310b7dff2b6d252cc8d3e6e7394":[2,0,0,0,0,3,10,3],
+"db/df6/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#ab1b4c053a127d36cc9061e96b35efbe2":[2,0,0,0,0,3,10,0],
+"db/df6/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#ac5b14e74b39161bbac6d6cf7ad009507":[2,0,0,0,0,3,10,1],
+"db/df6/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessMetadata.html#aec82d69d4ed869039d4527bd883048f0":[2,0,0,0,0,3,10,2],
"dc/d04/namespaceZeebe_1_1Client_1_1Api_1_1Builder.html":[1,0,0,0,0,0],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html":[2,0,0,0,0,2,6],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a1c78566bb6db79ee85d5bcc2ff76cc85":[2,0,0,0,0,2,6,0],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a2fdc616dbae422b068481869f3393b11":[2,0,0,0,0,2,6,2],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a337b0dd2deba33079e2079f46fbce714":[2,0,0,0,0,2,6,12],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a3ebe082efc71c973919a9462bf210cf4":[2,0,0,0,0,2,6,3],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a400dcaf1e73d9969e3c9f707cbe696f7":[2,0,0,0,0,2,6,10],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a40ef403c0f71d68748bc3a1f3e2057cb":[2,0,0,0,0,2,6,6],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a52dcaaf846ca91ad327b3c333fc7814c":[2,0,0,0,0,2,6,5],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a6b013fa7d65ce34c20fb741623715aee":[2,0,0,0,0,2,6,11],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a6cda4af72c822cfe5a3b7817fcf245b0":[2,0,0,0,0,2,6,8],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a744a674cba2fe873abba69c6ee725581":[2,0,0,0,0,2,6,1],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a9730f3918a9dc0e7c420b1f2f99aca08":[2,0,0,0,0,2,6,7],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#aa0007e8fbe2cb18c5b3ea925521b2fcc":[2,0,0,0,0,2,6,4],
-"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#af1c5a7db655676d720e79b685e4fa40e":[2,0,0,0,0,2,6,9],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html":[2,0,0,0,0,1,10],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a042d13e177b73a902cc79c62e8e615cc":[2,0,0,0,0,1,10,4],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a3267d345bbd66dde721124e7c6cb3170":[2,0,0,0,0,1,10,2],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a792e2104404e67c5b5729f8bcbe5c3dc":[2,0,0,0,0,1,10,1],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#a7b096f04ac99a3b1fcfecd7230857def":[2,0,0,0,0,1,10,0],
-"dd/d11/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IDeployProcessCommandStep1.html#acaf77e09edb7b9a169abab570a51f5c3":[2,0,0,0,0,1,10,3],
-"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html":[2,0,0,0,0,2],
-"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html":[1,0,0,0,0,2],
-"dd/dec/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep2.html":[2,0,0,0,0,1,24],
-"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html":[2,0,0,0,0,2,4],
-"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html#a270180908988f6d6ccb63e16688228c9":[2,0,0,0,0,2,4,1],
-"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html#a661187c57bf3bda52a5506c7e348207a":[2,0,0,0,0,2,4,0],
-"de/d8a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IFailJobResponse.html":[2,0,0,0,0,2,5],
-"de/db1/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep2.html":[2,0,0,0,0,0,3],
-"de/db1/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep2.html#a9d6848dfba6c3436a99959c8919e900d":[2,0,0,0,0,0,3,0],
-"de/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep2.html":[2,0,0,0,0,1,19],
-"de/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep2.html#a571c951aa60a16f6c3ed957a897499dd":[2,0,0,0,0,1,19,0],
-"de/df8/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IResolveIncidentResponse.html":[2,0,0,0,0,2,9],
-"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html":[2,0,0,0,0,3,0],
-"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a59b44132084c211cbae9d81ff99804ca":[2,0,0,0,0,3,0,3],
-"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a8c429fc86a8093c8cafa7ff39e6d517b":[2,0,0,0,0,3,0,1],
-"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a8f24aa0d771928b078293383a0e76aeb":[2,0,0,0,0,3,0,0],
-"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#af7c7675709c3a77d44c53e672ebe3b60":[2,0,0,0,0,3,0,2],
-"df/d68/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ITopology.html":[2,0,0,0,0,2,12],
-"df/d68/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ITopology.html#a096a4c7fd0b404a311dee2ad7ec93536":[2,0,0,0,0,2,12,0],
-"df/d8e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html":[2,0,0,0,0,1,8],
-"df/d8e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html#a2f475e4bd7ec3246606115b48e45d308":[2,0,0,0,0,1,8,1],
-"df/d8e/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html#a5e1642fc25d01273efacceb1899734ab":[2,0,0,0,0,1,8,0],
+"dc/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html":[2,0,0,0,0,1,5],
+"dc/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html#a785c0495c173b6e3ba1980b175bb9465":[2,0,0,0,0,1,5,0],
+"dc/db3/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep1.html#ad05e1c4563f4dc1e16ca864d7eaedb98":[2,0,0,0,0,1,5,1],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html":[2,0,0,0,0,3,6],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a1c78566bb6db79ee85d5bcc2ff76cc85":[2,0,0,0,0,3,6,0],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a2f5a8450f2bbeb4e40b79cfa9c04cd9d":[2,0,0,0,0,3,6,6],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a2fdc616dbae422b068481869f3393b11":[2,0,0,0,0,3,6,2],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a3ebe082efc71c973919a9462bf210cf4":[2,0,0,0,0,3,6,3],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a40ef403c0f71d68748bc3a1f3e2057cb":[2,0,0,0,0,3,6,9],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a52dcaaf846ca91ad327b3c333fc7814c":[2,0,0,0,0,3,6,5],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a6cda4af72c822cfe5a3b7817fcf245b0":[2,0,0,0,0,3,6,11],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a6e007a65b4d34776999fd785b2fe6a63":[2,0,0,0,0,3,6,7],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a744a674cba2fe873abba69c6ee725581":[2,0,0,0,0,3,6,1],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#a9730f3918a9dc0e7c420b1f2f99aca08":[2,0,0,0,0,3,6,10],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#aa0007e8fbe2cb18c5b3ea925521b2fcc":[2,0,0,0,0,3,6,4],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#af128cbe8db2fef999bda05b4c7e7853c":[2,0,0,0,0,3,6,8],
+"dc/ddb/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IJob.html#af1c5a7db655676d720e79b685e4fa40e":[2,0,0,0,0,3,6,12],
+"dd/d46/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html":[2,0,0,0,0,3,8],
+"dd/d46/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#aad77097bb09a8938f6c0096cc15d8dba":[2,0,0,0,0,3,8,0],
+"dd/d46/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#ad5066fdf0832699225037b155f20f72e":[2,0,0,0,0,3,8,2],
+"dd/d46/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#adfb05d21db3838bf917ade6a38f8351d":[2,0,0,0,0,3,8,3],
+"dd/d46/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IProcessInstanceResponse.html#ae0c0d213a9591abda881ee789095de10":[2,0,0,0,0,3,8,1],
+"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html":[1,0,0,0,0,3],
+"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html#a1a9e862a4c86d9647570967f6001b9a2":[1,0,0,0,0,3,17],
+"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html#a1a9e862a4c86d9647570967f6001b9a2a8026987f2531b5fa5178a851c108397c":[1,0,0,0,0,3,17,1],
+"dd/db3/namespaceZeebe_1_1Client_1_1Api_1_1Responses.html#a1a9e862a4c86d9647570967f6001b9a2ab8058aa3ecd39b676ce80d6aaadc5e64":[1,0,0,0,0,3,17,0],
+"dd/dd6/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html":[2,0,0,0,0,1,8],
+"dd/dd6/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html#a543b15d86a55a05375d4b9f04fee0326":[2,0,0,0,0,1,8,0],
+"dd/dd6/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceWithResultCommandStep1.html#a92948a6b91ec0cd6b61ea1d2937beec8":[2,0,0,0,0,1,8,1],
+"dd/dec/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IUpdateRetriesCommandStep2.html":[2,0,0,0,0,1,25],
+"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html":[2,0,0,0,0,3,4],
+"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html#a52535178a8c10969585cbb9cf34d3557":[2,0,0,0,0,3,4,1],
+"de/d05/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IDeployResponse.html#a661187c57bf3bda52a5506c7e348207a":[2,0,0,0,0,3,4,0],
+"de/d82/interfaceZeebe_1_1Client_1_1Api_1_1Misc_1_1IAsyncRetryStrategy.html":[2,0,0,0,0,2,0],
+"de/d82/interfaceZeebe_1_1Client_1_1Api_1_1Misc_1_1IAsyncRetryStrategy.html#a8d27e472fa41baf27cb976201d3e0663":[2,0,0,0,0,2,0,0],
+"de/d8a/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IFailJobResponse.html":[2,0,0,0,0,3,5],
+"de/db1/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep2.html":[2,0,0,0,0,0,6],
+"de/db1/interfaceZeebe_1_1Client_1_1Api_1_1Builder_1_1ICamundaCloudTokenProviderBuilderStep2.html#a9d6848dfba6c3436a99959c8919e900d":[2,0,0,0,0,0,6,0],
+"de/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep2.html":[2,0,0,0,0,1,20],
+"de/de4/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ISetVariablesCommandStep2.html#a571c951aa60a16f6c3ed957a897499dd":[2,0,0,0,0,1,20,0],
+"de/df7/namespaceZeebe_1_1Client_1_1Api_1_1Misc.html":[1,0,0,0,0,2],
+"de/df8/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1IResolveIncidentResponse.html":[2,0,0,0,0,3,12],
+"df/d4a/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html":[2,0,0,0,0,1,6],
+"df/d4a/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html#a4a5a8fe159510992c0fe4e7417e36c8c":[2,0,0,0,0,1,6,1],
+"df/d4a/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1ICreateProcessInstanceCommandStep2.html#aac72874e79fc6adec2bfb366e7097e01":[2,0,0,0,0,1,6,0],
+"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html":[2,0,0,0,0,4,0],
+"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a59b44132084c211cbae9d81ff99804ca":[2,0,0,0,0,4,0,3],
+"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a8c429fc86a8093c8cafa7ff39e6d517b":[2,0,0,0,0,4,0,1],
+"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#a8f24aa0d771928b078293383a0e76aeb":[2,0,0,0,0,4,0,0],
+"df/d67/interfaceZeebe_1_1Client_1_1Api_1_1Worker_1_1IJobClient.html#af7c7675709c3a77d44c53e672ebe3b60":[2,0,0,0,0,4,0,2],
+"df/d68/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ITopology.html":[2,0,0,0,0,3,15],
+"df/d68/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ITopology.html#a096a4c7fd0b404a311dee2ad7ec93536":[2,0,0,0,0,3,15,0],
+"df/d68/interfaceZeebe_1_1Client_1_1Api_1_1Responses_1_1ITopology.html#a9cb363b32dfe0812cf4dfa402ccd6d47":[2,0,0,0,0,3,15,1],
"df/d94/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep3.html":[2,0,0,0,0,1,2],
"df/d94/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep3.html#a1aa28e4533273ecdc7308d2c626b3ae5":[2,0,0,0,0,1,2,0],
"df/d94/interfaceZeebe_1_1Client_1_1Api_1_1Commands_1_1IActivateJobsCommandStep3.html#aa1b591ff96d653c3631faacc86d209cb":[2,0,0,0,0,1,2,3],
@@ -195,7 +215,8 @@ var NAVTREEINDEX0 =
"index.html":[],
"index.html":[0],
"index.html#API":[0,0],
-"index.html#Example":[0,1],
+"index.html#Cloud-Example":[0,1],
+"index.html#Example":[0,2],
"namespacemembers.html":[1,1,0],
"namespacemembers_enum.html":[1,1,2],
"namespacemembers_func.html":[1,1,1],
diff --git a/docs/resize.js b/docs/resize.js
index a0bb5f45..e1ad0fe3 100644
--- a/docs/resize.js
+++ b/docs/resize.js
@@ -1,25 +1,26 @@
/*
- @licstart The following is the entire license notice for the
- JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
- Copyright (C) 1997-2017 by Dimitri van Heesch
+ The MIT License (MIT)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ Copyright (C) 1997-2020 by Dimitri van Heesch
- This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
- @licend The above is the entire license notice
- for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
function initResizable()
{
@@ -91,7 +92,9 @@ function initResizable()
}
collapsedWidth=width;
}
- (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView();
+ if (location.hash.slice(1)) {
+ (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView();
+ }
}
function collapseExpand()
diff --git a/docs/search/all_0.html b/docs/search/all_0.html
index 26dd244f..1ec5b2d5 100644
--- a/docs/search/all_0.html
+++ b/docs/search/all_0.html
@@ -1,7 +1,8 @@
-
+
+
-
+
@@ -10,21 +11,27 @@
object is the parent of the search bar */
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 36px;
+ margin-right: 1em;
+}
+
/*---------------- Search filter selection */
#MSearchSelectWindow {
@@ -220,19 +204,21 @@ a.SRScope:focus, a.SRScope:active {
span.SRScope {
padding-left: 4px;
+ font-family: Arial, Verdana, sans-serif;
}
.SRPage .SRStatus {
padding: 2px 5px;
font-size: 8pt;
font-style: italic;
+ font-family: Arial, Verdana, sans-serif;
}
.SRResult {
display: none;
}
-DIV.searchresults {
+div.searchresults {
margin-left: 10px;
margin-right: 10px;
}
diff --git a/docs/search/search.js b/docs/search/search.js
index a554ab9c..fb226f73 100644
--- a/docs/search/search.js
+++ b/docs/search/search.js
@@ -1,25 +1,26 @@
/*
- @licstart The following is the entire license notice for the
- JavaScript code in this file.
+ @licstart The following is the entire license notice for the JavaScript code in this file.
- Copyright (C) 1997-2017 by Dimitri van Heesch
+ The MIT License (MIT)
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ Copyright (C) 1997-2020 by Dimitri van Heesch
- This program 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 for more details.
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
+ and associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
- @licend The above is the entire license notice
- for the JavaScript code in this file
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ @licend The above is the entire license notice for the JavaScript code in this file
*/
function convertToId(search)
{
@@ -79,9 +80,10 @@ function getYPos(item)
storing this instance. Is needed to be able to set timeouts.
resultPath - path to use for external files
*/
-function SearchBox(name, resultsPath, inFrame, label)
+function SearchBox(name, resultsPath, inFrame, label, extension)
{
if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); }
+ if (!extension || extension == "") { extension = ".html"; }
// ---------- Instance variables
this.name = name;
@@ -96,6 +98,7 @@ function SearchBox(name, resultsPath, inFrame, label)
this.searchActive = false;
this.insideFrame = inFrame;
this.searchLabel = label;
+ this.extension = extension;
// ----------- DOM Elements
@@ -200,10 +203,9 @@ function SearchBox(name, resultsPath, inFrame, label)
}
return;
}
- else if (window.frames.MSearchResults.searchResults)
+ else
{
- var elem = window.frames.MSearchResults.searchResults.NavNext(0);
- if (elem) elem.focus();
+ window.frames.MSearchResults.postMessage("take_focus", "*");
}
}
else if (e.keyCode==27) // Escape out of the search field
@@ -347,13 +349,13 @@ function SearchBox(name, resultsPath, inFrame, label)
if (idx!=-1)
{
var hexCode=idx.toString(16);
- resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html';
+ resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension;
resultsPageWithSearch = resultsPage+'?'+escape(searchValue);
hasResultsPage = true;
}
else // nothing available for this search term
{
- resultsPage = this.resultsPath + '/nomatches.html';
+ resultsPage = this.resultsPath + '/nomatches' + this.extension;
resultsPageWithSearch = resultsPage;
hasResultsPage = false;
}
@@ -364,7 +366,7 @@ function SearchBox(name, resultsPath, inFrame, label)
if (domPopupSearchResultsWindow.style.display!='block')
{
var domSearchBox = this.DOMSearchBox();
- this.DOMSearchClose().style.display = 'inline';
+ this.DOMSearchClose().style.display = 'inline-block';
if (this.insideFrame)
{
var domPopupSearchResults = this.DOMPopupSearchResults();
@@ -439,12 +441,12 @@ function SearchResults(name)
while (element && element!=parentElement)
{
- if (element.nodeName == 'DIV' && element.className == 'SRChildren')
+ if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren')
{
return element;
}
- if (element.nodeName == 'DIV' && element.hasChildNodes())
+ if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes())
{
element = element.firstChild;
}
diff --git a/docs/search/searchdata.js b/docs/search/searchdata.js
index 9fce35b2..a4c70b4b 100644
--- a/docs/search/searchdata.js
+++ b/docs/search/searchdata.js
@@ -1,11 +1,11 @@
var indexSectionsWithContent =
{
- 0: "abcdefhijklmnoprstuvwz",
+ 0: "abcdefghijklmnoprstuvwz",
1: "i",
2: "z",
- 3: "abcefhijlmnoprstuvw",
+ 3: "abcdefhijlmnoprstuvw",
4: "p",
- 5: "abcdehijknprtvw",
+ 5: "abcdeghijknprtvw",
6: "t"
};
diff --git a/docs/zeebe-logo.png b/docs/zeebe-logo.png
new file mode 100644
index 00000000..1b613dda
Binary files /dev/null and b/docs/zeebe-logo.png differ