Infrastructure

Services in the Dragon runtime interact with each other using messages transported with a variety of different means (mostly Channels). Although there is the Client API to construct and send these messages, the messages themselves constitute the true internal interface. To that end, they are a convention. Developers should use this API to add functionality to the Dragon Services through new messages. It is not meant for users.

Python Reference

channel_desc

A class that uniquely defines properties of a managed channel for infrastructure communication.

facts

Specified constants and names used in the Dragon runtime.

group_desc

A class that uniquely defines properties of a managed Group of resources for infrastructure communication.

messages

node_desc

A class that uniquely defines properties of a managed hardware node for infrastructure communication.

parameters

Launch parameters for Dragon infrastructure and managed processes

pool_desc

A class that uniquely defines properties of a managed memory pool for infrastructure communication.

process_desc

A class that uniquely defines properties of a managed Process for infrastructure communication.

standalone_conn

A quick and dirty scheme for doing single node channels by themselves.

util

Python infrastructure utilities.

C Reference