DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.git] / src / main / java / org / onap / dmaap / dmf / mr / backends / Publisher.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.dmf.mr.backends;
23
24 import org.apache.kafka.clients.producer.ProducerRecord;
25 import org.onap.dmaap.dmf.mr.beans.LogDetails;
26
27 import java.io.IOException;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 /**
32  * A publisher interface. Publishers receive messages and post them to a topic.
33  * @author peter
34  */
35 public interface Publisher
36 {
37         /**
38          * A message interface. The message has a key and a body.
39          * @author peter
40          */
41         public interface message
42         {
43                 /**
44                  * Get the key for this message. The key is used to partition messages
45                  * into "sub-streams" that have guaranteed order. The key can be null,
46                  * which means the message can be processed without any concern for order.
47                  * 
48                  * @return a key, possibly null
49                  */
50                 String getKey();
51
52                 /**
53                  * Get the message body.
54                  * @return a message body
55                  */
56                 String getMessage();
57                 /**
58                  * set the logging params for transaction enabled logging 
59                  * @param logDetails
60                  */
61                 void setLogDetails (LogDetails logDetails);
62                 /**
63                  * Get the log details for transaction enabled logging
64                  * @return LogDetails
65                  */
66                 LogDetails getLogDetails ();
67                 
68                 /**
69                  * boolean transactionEnabled
70                  * @return true/false
71                  */
72                 boolean isTransactionEnabled();
73                 /**
74                  * Set the transaction enabled flag from prop file or topic based implementation
75                  * @param transactionEnabled
76                  */
77                 void setTransactionEnabled(boolean transactionEnabled);
78         }
79
80         /**
81          * Send a single message to a topic. Equivalent to sendMessages with a list of size 1.
82          * @param topic
83          * @param msg
84          * @throws IOException
85          */
86         public void sendMessage ( String topic, message msg ) throws IOException;
87
88         /**
89          * Send messages to a topic.
90          * @param topic
91          * @param msgs
92          * @throws IOException
93          */
94         public void sendMessages ( String topic, List<? extends message> msgs ) throws IOException;
95         
96         public void sendBatchMessageNew(String topic ,ArrayList<ProducerRecord<String,String>> kms) throws IOException;
97         public void sendMessagesNew( String topic, List<? extends message> msgs ) throws IOException;
98 }