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
This epic supports storing input messages outside of LinuxForHealth Connect's kafka topics within a storage system. Storage systems include:
Object Storage (using minio)
IPFS
RDBMS
Storage systems are supported through the use of a storage driver "interface" which defines the basic operations requires to store and fetch a message from a system.
defstore(input_message: Any) ->str:
# input_message is an EDI Model# return type is the URI to the message within the storage systempassdeffetch(uri: str) ->Any:
# uri is the storage system uri# returns the input message as an EDI modelpass
The text was updated successfully, but these errors were encountered:
This epic supports storing input messages outside of LinuxForHealth Connect's kafka topics within a storage system. Storage systems include:
Storage systems are supported through the use of a storage driver "interface" which defines the basic operations requires to store and fetch a message from a system.
The text was updated successfully, but these errors were encountered: