1
2
3
4
5
6
7 package org.mule.transport.udp;
8
9 import org.mule.api.MuleException;
10 import org.mule.api.endpoint.OutboundEndpoint;
11 import org.mule.api.transport.MessageDispatcher;
12 import org.mule.transport.AbstractMessageDispatcherFactory;
13
14
15
16
17
18
19 public class UdpMessageDispatcherFactory extends AbstractMessageDispatcherFactory
20 {
21 public MessageDispatcher create(OutboundEndpoint endpoint) throws MuleException
22 {
23 return new UdpMessageDispatcher(endpoint);
24 }
25 }