Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9214097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T01:54:01+00:00 2026-06-18T01:54:01+00:00

How to update data to server ? I have used the code below but

  • 0

How to update data to server ? I have used the code below but its not executing after 10 mins.

ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
        executor.scheduleWithFixedDelay(new Runnable(){

            public void run() {

//update data to server

            }

    }, 0, 600, TimeUnit.SECONDS);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T01:54:02+00:00Added an answer on June 18, 2026 at 1:54 am

    You must use your own Thread.
    Here is solution using AsyncTask….

    All code put in your Activity class.

    public void toCallAsynchronous() {
                        final Handler handler = new Handler();
                        Timer timer = new Timer();
                        TimerTask doAsynchronousTask = new TimerTask() {
                            @Override
                            public void run() {
                                handler.post(new Runnable() {
                                    public void run() {
                                        try {
    
            MyAsyncTask task = new MyAsyncTask();
            task.execute(txtSearchField.getText().toString());
    
    
                                    }
                                });
                            }
                        };
        timer.schedule(doAsynchronousTask, 0, 2000); // execute in every 2 second
    
    }
    

    // AsyncTask Class

    private class MyAsyncTask extends AsyncTask<String, Object, List<ModelObject>> {
    
                   @Override
                   protected List< ModelObject > doInBackground(String... params) {
    
                   // Call web service
                   return null;
    
                    }
    
                    @Override
                    protected void onPostExecute(List< ModelObject > result) {
                            super.onPostExecute(rezultat);
                            // Update UI
                    }            
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have used below code for delete command of GridView, but when I press
I have to update different server data which takes huge time. I have to
On my server, I have two users, www-data (which is used by nginx) and
I need to insert/update data by using link or image I need a code
I use this code to update data in database table. Can reuse same code
Is it possible to communicate and update data in a page without reloading, but
I need to insert, delete and update data using a xml file. I have
Trying to create a Sencha-Touch-2 app syncing to a Node.js server; code below. The
Update: I've added the following code: function TSettingsForm.AppDataPath: string; //CSIDL_APPDATA Individual user Data //CSIDL_COMMON_APPDATA
I have webservice with many connections to it. I used this code: IAsyncResult result

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.