add test case
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / messagemgr / MessageChannel.java
1 /**
2  * Copyright 2017 BOCO Corporation.  CMCC Technologies Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.emsdriver.messagemgr;
17
18 import java.util.concurrent.BlockingQueue;
19 import java.util.concurrent.LinkedBlockingQueue;
20 import java.util.concurrent.TimeUnit;
21
22
23 public class MessageChannel {
24         
25         private BlockingQueue<Object> queue = null;
26         
27         public MessageChannel(int size){
28                 if(size>0){
29                         queue = new  LinkedBlockingQueue<Object>(size);
30                 }else{
31                         queue = new  LinkedBlockingQueue<Object>();
32                 }
33         }
34         
35         public MessageChannel(){
36                 queue = new  LinkedBlockingQueue<Object>();
37         }
38         public  void put(Object msg) throws InterruptedException{
39                 while(!queue.offer(msg)){
40                         queue.poll();
41                 }
42         }
43         
44         public  Object get() throws InterruptedException{
45                 return queue.take();
46         }
47         
48         public  Object poll() throws InterruptedException{
49                 return queue.poll(100, TimeUnit.MILLISECONDS);
50         }
51         
52         public  int size(){
53                 return queue.size();
54         }
55
56         public  void clear(){
57                 queue.clear();
58         }
59
60         public BlockingQueue<Object> getQueue() {
61                 return queue;
62         }
63         
64         
65 }