Get desktop application:
View/edit binary Protocol Buffers messages
Requests the creation for a Blog Returns Status.INTERNAL if the blog couldn't be created due to Db error Returns the created Blog's Id
Requests the delete of a Blog in Db by giving its Id Returns Status.NOT_FOUND if the Id doesn't match any Blog in Db Returns Status.INTERNAL if the blog couldn't be deleted due to Db error Returns Empty
Requests access to all the Blogs in Db Returns stream of Blogs
Requests access to the content of a Blog by sending an Id Returns Status.NOT_FOUND if the Id doesn't match any Blog in Db Returns Blog content
Requests the update of a Blog in Db Returns Status.NOT_FOUND if the Id doesn't match any Blog in Db Returns Status.INTERNAL if the blog couldn't be updated due to Db error Returns Empty
Used as request type in: BlogService.CreateBlog, BlogService.UpdateBlog
Used as response type in: BlogService.ListBlogs, BlogService.ReadBlog
Used as request type in: BlogService.DeleteBlog, BlogService.ReadBlog
Used as response type in: BlogService.CreateBlog