org.teksme.server.queue.consumer.impl.InboundConsumer.java Source code

Java tutorial

Introduction

Here is the source code for org.teksme.server.queue.consumer.impl.InboundConsumer.java

Source

/*
 * Copyright 2010 Creative Works, Inc.
 * Creative Works licenses this file to you under the Apache License, version
 * 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *    http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.  See the License for the specific language governing
 * permissions and limitations under the License.
 */
package org.teksme.server.queue.consumer.impl;

import java.io.IOException;

import org.teksme.model.teks.InboundMessage;
import org.teksme.model.teks.Message;
import org.teksme.server.queue.consumer.BaseConsumer;
import org.teksme.server.queue.consumer.MessageListener;

import com.rabbitmq.client.AMQP.BasicProperties;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Envelope;

/**
 * 
 * @since 0.5
 * 
 */
public class InboundConsumer extends BaseConsumer {

    // private SMSInboundMessage inbound;

    public InboundConsumer(Channel channel) {
        super(channel);
    }

    @SuppressWarnings("unused")
    @Override
    public void handleDelivery(String consumerTag, Envelope envelope, BasicProperties properties, byte[] body)
            throws IOException {
        long deliveryTag = envelope.getDeliveryTag();

        InboundMessage message = null;
        try {
            message = (InboundMessage) new java.io.ObjectInputStream(new java.io.ByteArrayInputStream(body))
                    .readObject();
            // inbound.readMessage(message);
        } catch (java.io.IOException ioe) {
            System.err.println(ioe.getMessage());
        } catch (java.lang.ClassNotFoundException cnfe) {
            System.err.println(cnfe.getMessage());
        }
        // TODO: implement HTTP callback to client application

        getChannel().basicAck(deliveryTag, false);
    }

    @Override
    public void addMessageListener(MessageListener<Message> listener) {
        // TODO Auto-generated method stub

    }
}