ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/ClientInterfaceMain.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/ClientInterfaceMain.java (file contents):
Revision 1.9 by tdb, Mon Jan 22 01:46:51 2001 UTC vs.
Revision 1.13 by tdb, Sat Jan 27 23:30:40 2001 UTC

# Line 64 | Line 64 | public class ClientInterfaceMain implements Component
64          NAME = ourName;
65          
66          _logger.write(toString(), Logger.SYSINIT, "configured");
67 <                
67 >        
68 >        // Setup a PacketSorter
69 >        PacketSorter ps = new PacketSorter();
70 >        ps.start();
71 >        
72          // ClientInterfaceServant start (for inbound data)
73          _logger.write(toString(), Logger.DEBUG, "starting servant for inbound data");
74 <        ClientInterfaceServant ciServant = new ClientInterfaceServant();
74 >        ClientInterfaceServant ciServant = new ClientInterfaceServant(ps);
75          _refman.bindToOrb(ciServant, "iscream.ClientInterface." + ClientInterfaceMain.NAME);
76          
77 <        TCPClientListener tcpClientListener = new TCPClientListener(listenPort, ciServant);
77 >        // Startup the TCPListener
78 >        TCPClientListener tcpClientListener = new TCPClientListener(listenPort, ps);
79          tcpClientListener.start();
80          
81          _logger.write(toString(), Logger.SYSINIT, "started");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines