signal_pgo
Types
pub type Projection {
Projection(
projection_id: String,
projection_name: String,
projection_version: Int,
data: String,
)
}
Constructors
-
Projection( projection_id: String, projection_name: String, projection_version: Int, data: String, )
pub type ProjectionMessage {
Store(Projection)
Get(
reply_with: process.Subject(Result(Projection, String)),
String,
)
Delete(String)
Shutdown
}
Constructors
-
Store(Projection)
-
Get( reply_with: process.Subject(Result(Projection, String)), String, )
-
Delete(String)
-
Shutdown