Package com.ontology2.haruhi.alert

Source Code of com.ontology2.haruhi.alert.AlertService

package com.ontology2.haruhi.alert;

import com.amazonaws.services.sqs.AmazonSQS;
import com.amazonaws.services.sqs.model.SendMessageRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;

@Component("alertService")
public class AlertService {
    @Autowired
    AmazonSQS sqsClient;
    @Resource
    String sqsQueueUrl;

    public void alert(String message) {
        sqsClient.sendMessage(new SendMessageRequest().withMessageBody(message).withQueueUrl(sqsQueueUrl));
    }
}
TOP

Related Classes of com.ontology2.haruhi.alert.AlertService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.