Project

General

Profile

RouterSessionManager.diff

Igor Skornyakov, 05/20/2021 12:27 PM

Download (1007 Bytes)

View differences:

src/com/goldencode/p2j/net/RouterSessionManager.java 2021-05-15 18:19:55 +0000
184 184
import java.util.logging.*;
185 185
import javax.net.ssl.*;
186 186
import com.goldencode.p2j.cfg.*;
187
import com.goldencode.p2j.persist.*;
187 188
import com.goldencode.p2j.security.*;
188 189
import com.goldencode.p2j.util.*;
189 190

  
......
602 603
    * Block the calling thread until the network portions of the server are fully initialized. 
603 604
    * At that point the server is ready to receive socket connections.
604 605
    * @throws InterruptedException 
606
    *         if the thread was interrupted
605 607
    */
606 608
   public void waitUntilReady()
607 609
   throws InterruptedException
......
931 933
            {
932 934
               session.addSessionListener(sl);
933 935
            }
936
            session.addSessionListener(DatabaseManager.sessionListener);
934 937
         }
935 938
      }
936 939