blockingJsonListener = new BlockingJsonListener();
new Thread("Argo StajParser") {
@Override
public void run() {
try {
new SajParser().parse(in, blockingJsonListener);
} catch (final InvalidSyntaxException e) {
blockingJsonListener.invalidSyntaxException(e);
} catch (final IOException e) {
blockingJsonListener.ioException(e);
} catch (final RuntimeException e) {