私は現在、Azure モバイル サービスに情報を送信する単純な Android アプリを構築しています。以下のチュートリアルのサンプルコードを使用しています。
mSClient = new MobileServiceClient(URL, KEY, context);
mSClient = getMSClient();
mSClient.getTable(MyClass.class).insert(form, new TableOperationCallback<MyClass>() {
public void onCompleted(MyClass entity, Exception exception, ServiceFilterResponse response) {
if (exception != null) {
Log.e("MSG", exception.getLocalizedMessage());
}
if (response != null) {
Log.e("MSG", response.getContent());
}
}
});
さて、onComplete メソッドで ServiceFilterResponse から応答を取得するにはどうすればよいですか。sqlite で自分の情報が送信済みであることを示すフラグを待つにはどうすればよいですか?