You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in runtime, each payloads entry is resolved to a Payload object, which is a generic container for any Golem payload and it consists mostly of properties and constraints based on which a Demand is constructed
in runtime, each of the nodes children is resolved to a Cluster object which contains (one or more) instance(s) of the service, each of which is an instance of a DappService class (inheriting from Service) ...
questions:
do we want to provide some way to access properties of the underlying objects directly?
if yes, what should be the interface?
should we try to include all these objects in the GAOM?
do we want to provide a generic interface of accessing the properties of the internal objects
alternatively, (and preferably?) we may wish to define a set of generic GAOM properties for each of those types which would be internally translated to appropriate objects
most (all?) of these will be read-only
e.g. a nodes entry could be described as having the following read-only structure:
after discussion with @stranger80 we have agreed to proceed with the initial implementation based on this schema and make pull requests against the gaom repo when schema changes need to be adjusted
boundaries being the places where the "golem deploy" tree ends and where references to structures from outside the "golem deploy" model exist
Example 1 - payload
here is the payload definition:
in runtime, each
payloads
entry is resolved to aPayload
object, which is a generic container for any Golem payload and it consists mostly of properties and constraints based on which a Demand is constructedExample 2 - service
in runtime, each of the
nodes
children is resolved to aCluster
object which contains (one or more) instance(s) of the service, each of which is an instance of aDappService
class (inheriting fromService
) ...questions:
e.g. a
nodes
entry could be described as having the following read-only structure:should we enable access to
DappService
's queues through GAOM?the resultant GAOM:
The text was updated successfully, but these errors were encountered: