File tree Expand file tree Collapse file tree 4 files changed +7
-53
lines changed
jetclient/src/main/java/org/menacheri/jetclient Expand file tree Collapse file tree 4 files changed +7
-53
lines changed Original file line number Diff line number Diff line change 1
1
package org .menacheri .jetclient .event ;
2
2
3
3
import org .menacheri .jetclient .communication .IDeliveryGuaranty ;
4
+ import org .menacheri .jetclient .communication .IDeliveryGuaranty .DeliveryGuaranty ;
4
5
import org .menacheri .jetclient .event .impl .AbstractSessionEventHandler ;
5
6
import org .menacheri .jetclient .event .impl .ChangeAttributeEvent ;
6
7
import org .menacheri .jetclient .event .impl .Event ;
@@ -86,7 +87,7 @@ public class Events
86
87
*/
87
88
public static INetworkEvent networkEvent (Object source )
88
89
{
89
- return networkEvent (source ,IDeliveryGuaranty . DeliveryGuaranty .RELIABLE );
90
+ return networkEvent (source , DeliveryGuaranty .RELIABLE );
90
91
}
91
92
92
93
/**
Original file line number Diff line number Diff line change 1
1
package org .menacheri .jetclient .event .impl ;
2
2
3
3
import org .menacheri .jetclient .communication .IDeliveryGuaranty ;
4
+ import org .menacheri .jetclient .communication .IDeliveryGuaranty .DeliveryGuaranty ;
4
5
import org .menacheri .jetclient .event .Events ;
5
6
import org .menacheri .jetclient .event .IEvent ;
6
7
import org .menacheri .jetclient .event .INetworkEvent ;
@@ -39,7 +40,7 @@ public NetworkEvent()
39
40
*/
40
41
public NetworkEvent (IEvent event )
41
42
{
42
- this (event , IDeliveryGuaranty . DeliveryGuaranty .RELIABLE );
43
+ this (event , DeliveryGuaranty .RELIABLE );
43
44
}
44
45
45
46
/**
@@ -48,7 +49,7 @@ public NetworkEvent(IEvent event)
48
49
* {@link Events#NETWORK_MESSAGE}. {@link DeliveryGuaranty} is set to the
49
50
* value passed in
50
51
*
51
- * @param eventevent
52
+ * @param event
52
53
* The instance from which payload, create time etc will be
53
54
* copied
54
55
*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
/**
12
12
* This decoder will convert a Netty {@link ChannelBuffer} to a
13
13
* {@link NettyMessageBuffer}. It will also convert
14
- * {@link Events#SERVER_OUT_TCP} and {@link Events#SERVER_OUT_UDP} events to
15
- * {@link Events#SESSION_MESSAGE} event.
14
+ * {@link Events#NETWORK_MESSAGE} events to {@link Events#SESSION_MESSAGE}
15
+ * event.
16
16
*
17
17
* @author Abraham Menacherry
18
18
*
You can’t perform that action at this time.
0 commit comments