Back to project page piwik_android_sdk.
The source code is released under:
MIT License
If you think the Android project piwik_android_sdk 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.anupcowkur.piwiksdk; /*from w ww. j ava 2 s . c om*/ import com.koushikdutta.async.future.FutureCallback; /** * Custom callback for network calls in sync adapter. */ public class PiwikCallback implements FutureCallback<String> { String columnName; public PiwikCallback(String columnName) { this.columnName = columnName; } public String getId() { return columnName; } @Override public void onCompleted(Exception e, String s) { } }