-
Notifications
You must be signed in to change notification settings - Fork 47
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
DOCS: Fix return value in asyncSopPipedExistBulk api. #687
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.
리뷰 완료
null | CollectionResponse.UNREADABLE | 해당 key를 읽을 수 없는 상태임. (unreadable item상태) | ||
empty map | CollectionResponse.NOT_FOUND | Key miss (주어진 key에 해당하는 item이 없음) | ||
empty map | CollectionResponse.TYPE_MISMATCH | 해당 key가 set이 아님 | ||
empty map | CollectionResponse.UNREADABLE | 해당 key를 읽을 수 없는 상태임. (unreadable item상태) |
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.
emtpy map 이라 지칭하는 것은 괜찮은 것 같음.
반면,
- not null 이라 지칭하는 것은 어색함
- noe null일 때 getOperationStatus() 값도 확인 필요.
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.
not null 이라 지칭하는 것은 어색함
filled map 또한 가능할것 같습니다.
noe null일 때 getOperationStatus() 값도 확인 필요.
-
empty map인 경우 : gotStatus 메서드 인자로 받은 OperationStatus 설정
-
filled map 인 경우 : receivedStatus의 인자로 받은 OperationStatus로 설정
- EXIST : CollecitonOperation.END
- NOT_EXIST : CollecitonOperation.END
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.
- 설명 부분이 다음과 같이 수정되어야 할 것 같음
- "주어진 값들에 대한 존재유무 확인 완료"
- 따라서, 성공한 경우는 1개 row만으로 표현
7063ea1
to
0386864
Compare
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.
리뷰 완료
null | CollectionResponse.UNREADABLE | 해당 key를 읽을 수 없는 상태임. (unreadable item상태) | ||
empty map | CollectionResponse.NOT_FOUND | Key miss (주어진 key에 해당하는 item이 없음) | ||
empty map | CollectionResponse.TYPE_MISMATCH | 해당 key가 set이 아님 | ||
empty map | CollectionResponse.UNREADABLE | 해당 key를 읽을 수 없는 상태임. (unreadable item상태) |
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.
- 설명 부분이 다음과 같이 수정되어야 할 것 같음
- "주어진 값들에 대한 존재유무 확인 완료"
- 따라서, 성공한 경우는 1개 row만으로 표현
0386864
to
666e946
Compare
Motivation
현재 문서를 구현에 맞춘 형태로 변경하였습니다.
https://github.com/jam2in/arcus-works/issues/455