public override void debugMap_async(AMD_IDataServer_debugMap cb__, DebugGridPoint[] map, short gridWidth, Ice.Current current__)
        {
            DebugReceiver r = new DebugReceiver(ref map, ref gridWidth, ref cb__);

            ThreadPool.QueueUserWorkItem(r.ThreadPoolCallback);
        }
 public DebugReceiver(ref DebugGridPoint[] map, ref short gridwidth, ref AMD_IDataServer_debugMap cb)
 {
     _Map       = map;
     _GridWidth = gridwidth;
     _CallBack  = cb;
 }