Esempio n. 1
0
        public void OnConnect(IConnection connection)
        {
            Console.WriteLine("Connected to eFTL server at " + url);

            // Create the map.
            IKVMap map = connection.CreateKVMap(name);

            // Asynchronously get the key-value pair.
            map.Remove(key, new KVMapListener(connection));
        }