chatterbox-nats/chatterbox-nats-sample-war/src/main/java/org/superbiz/Sender.java [45:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void sendMessage(@PathParam("subject") final String subject, final String message) {
        try {
            final NATSConnection connection = cf.getConnection();
            connection.publish(subject, message.getBytes(StandardCharsets.UTF_8));
            connection.close();
        } catch (Throwable t) {
            // TODO: log this
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chatterbox-nats/chatterbox-nats-sample-war-rar/src/main/java/org/superbiz/Sender.java [45:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void sendMessage(@PathParam("subject") final String subject, final String message) {
        try {
            final NATSConnection connection = cf.getConnection();
            connection.publish(subject, message.getBytes(StandardCharsets.UTF_8));
            connection.close();
        } catch (Throwable t) {
            // TODO: log this
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



