Exemplo n.º 1
0
        public TokenRingClient(TokenRing tokenRing)
        {
            this.tokenRing = tokenRing;
            this.host      = new XmlRpcRequest();

            // Create a new, second thread
            clientThread = new Thread(new ThreadStart(this.sendToken));
            clientThread.Start(); // Start the thread
        }
Exemplo n.º 2
0
 public static void addTokenRing(TokenRing tokenRing)
 {
     tokenRingList.Add(tokenRing);
 }