Link[] la;
la = LinkPortal.getLinks();
if (la == null) {
throw new IOException("getLinks() returned null");
}
if (la.length != 2) {
throw new IOException("getLinks() returned wrong length array");
}
while (true) {
LinkMessage lm = la[0].receive();
la[1].send(lm);
}