Example #1
0
        protected override void OnStart()
        {
            //start background upload thread
            var state = new object();

            _timer = new PCLTimer(e => PipeTallyService.UploadNewBatches(), state, 5000, 180000, true);
        }
Example #2
0
        protected override void OnResume()
        {
            var state = new object();

            _timer = new PCLTimer(e => PipeTallyService.UploadNewBatches(), state, 5000, 180000, true);
        }