1 package com.trendmicro.grid.acl.ds.msmq;
2
3 import java.io.IOException;
4 import java.net.URI;
5 import java.util.List;
6
7 /**
8 * TODO: Create Description.
9 *
10 * @author juergen_kellerer, 2010-06-17
11 * @version 1.0
12 */
13 public interface Sender {
14
15 public void reset(List<URI> endpoints, String queueName);
16
17 public void send(int priority, String messageBody) throws IOException;
18 }