-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1078] Add async delete support #1102
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.. left one comment, pls take a look
} | ||
}), callback); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Override
public abstract Observable<Void> deleteAsync(string id);
is it cleaner if we add this here?
@Override | ||
public Observable<Void> deleteAsync(String id) { | ||
return deleteAsync(ResourceUtils.groupFromResourceId(id), ResourceUtils.nameFromResourceId(id)); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as previous comment..
@Override
public abstract Observable<Void> deleteAsync(string groupName, string name);
per Anu's review, ok to merge -- comments could be addressed separately and are not blocking
per Anu's review, ok to merge -- comments could be addressed separately and are not blocking
#1078