Using the XPA messaging system
In your Julia code/session, it is sufficient to do:
import XPA
or:
using XPA
This makes no differences as nothing is exported by the XPA
module. This means that all methods or constants are prefixed by XPA.
; but you may change the suffix, for instance:
import XPA as xpa
or in Julia version 1.5 or older:
using XPA
const xpa = XPA
The implemented methods are described in what follows, first the client side, then the server side and finally some utilities. More extensive XPA documentation can be found here.