-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fc09d3
commit 33db0c8
Showing
6 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ package golem:[email protected]; | |
/// The Golem host API provides low level access to Golem specific features such as promises and control over | ||
/// the durability and transactional guarantees the executor provides. | ||
interface host { | ||
use golem:rpc/types@0.1.2.{uri}; | ||
use golem:rpc/types@0.1.2.{uri, wit-value}; | ||
use wasi:clocks/monotonic-clock@0.2.0.{duration}; | ||
use wasi:clocks/wall-clock@0.2.0.{datetime}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ package golem:[email protected]; | |
/// Host interface for enumerating and searching for worker oplogs | ||
interface oplog { | ||
use wasi:clocks/wall-clock@0.2.0.{datetime}; | ||
use golem:rpc/types@0.1.1.{wit-value}; | ||
use golem:rpc/types@0.1.2.{wit-value}; | ||
|
||
use host.{account-id, component-version, oplog-index, retry-policy, uuid, worker-id}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ package golem:[email protected]; | |
|
||
interface oplog-processor { | ||
use wasi:clocks/wall-clock@0.2.0.{datetime}; | ||
use golem:rpc/types@0.1.1.{wit-value}; | ||
use golem:rpc/types@0.1.2.{wit-value}; | ||
|
||
use host.{account-id, component-id, oplog-index, worker-id, worker-metadata}; | ||
use oplog.{oplog-entry}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ package golem:[email protected]; | |
/// The Golem host API provides low level access to Golem specific features such as promises and control over | ||
/// the durability and transactional guarantees the executor provides. | ||
interface host { | ||
use golem:rpc/types@0.1.1.{uri}; | ||
use golem:rpc/types@0.1.2.{uri}; | ||
use wasi:clocks/monotonic-clock@0.2.0.{duration}; | ||
|
||
/// An index into the persistent log storing all performed operations of a worker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package golem:rpc@0.1.1; | ||
package golem:rpc@0.1.2; | ||
|
||
interface types { | ||
use wasi:io/poll@0.2.0.{pollable}; | ||
|