Using the XPA messaging system
In your Julia code/session, it is sufficient to do:
import XPAor:
using XPAThis 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 xpaor in Julia version 1.5 or older:
using XPA
const xpa = XPAThe 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.