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

  • Home
  • SEARCH
  • 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 4613576
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:34:19+00:00 2026-05-22T01:34:19+00:00

I am trying to design a helper class that implements methods using AsyncTask. public

  • 0

I am trying to design a helper class that implements methods using AsyncTask.

public interface ResultCallback
{
    public String processResult();
}

public class ServerAdapter
{

    // Required processResult to call this method. Kind of lousy but I do not know
    // how to throw exception from onPostExcecute in AsyncTask.
    public String getResult() throws AirplaneModeException, NoNetworkException
    {
       // code to get return value from Dowork throw exceptions on errors
    }

    public void getLicense(ResultCallback licenseCallback)
    {
        ...// Set url, outmessage
        new Dowork(url, outMessage, licenseCallback).execute();
    }

    public void queryServer(int queryId, ArrayList<String> args, ResultCallback queryCallback)
    {
        ...// Set url, outmessage
        new Dowork(url, outmessage, queryCallback);
    }

    private class Dowork extends AsyncTask<Void, Void, String>
    {
        ...
        private ResultCallback rc;

        public Dowork(String url, String outMessage, ResultCallback rc)
        {
            // code here
        }

        protected String doInBackground(Void... params)
        {
            try
            {
                 // code here
            }
            catch (AirplaneModeException e)
            {
                return "AirplaneModeException";
            }
            catch ...
         }

         protected void onPostExecute(String result)
         {
             this.result = result;
             cb.processResult();
         }
    }
}

// Client class
public class myclass extends Activity
{
    MyServerAdapter myAdapter;

    public void onCreate(Bundle savedInstanceState)
    {
        ...
        myAdapter = new ServerAdapter();
        myAdapter.getLicence(new MyLicenseCallback);
        myAdapter.queryServer(id, args, new MyQueryCallback);
        ...
    }

    public class MyLicenseCallback extends ResultCallback implements processResult
    {
        try
        {
            String result = myAdapter.getResult;
            ...
        }
        catch
        ... 
    }
    ...

}

I am new to Java and Android and have a couple of questions:

1- Would several ServerAdapter method calls cause synchronize problem? For example while code for MyLicense callback is running, if onPostExecute calls MyQueryCallback, do I have to handle it or Java handles it?

2- How to get exception thrown in Dowork thrown in the callback instead of work around like in the code above?

  • 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-05-22T01:34:19+00:00Added an answer on May 22, 2026 at 1:34 am
    1. Android guarantees you that methods in your activity and AsyncTask.onPostExecute runs in the same main UI thread.

    2. You could save the exception in the task instance variable the same way as you do for result (return, say null as the result in this case). Check if exception present or not later to handle the error situation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to design a homepage for an MVC site that has two different
i m trying to design a mmo game using python... I have evaluated stackless
I am trying to design a template for a TabItem using paths and rectangles.
I am trying to design an application that would require me to retrieve data
I'm trying to design some tables to store some data, which has to be
I'm trying to design an application based on the OpenSocial API , and I'm
I'm trying to design a model for a application allowing 2 people to bet
I've been trying to design a database schema for a side project but I
I am trying to design a location lookup in which the user can specify
I'm trying to design a form which contains a dropdown box containing a list

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.