Back to project page com.elsewhat.android.slideshow.
The source code is released under:
Copyright (C) 2012 Dagfinn Parnas <dagfinn.parnas@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Sof...
If you think the Android project com.elsewhat.android.slideshow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.elsewhat.android.slideshow.api; //from w ww .j av a 2 s .c o m public interface AsyncQueueableObject { /** * * Perform the operation in a background thread * @return */ public void performOperation(); /** * Handle the result in the UI thread * * @param result */ public void handleOperationResult(); }