Github user onkarshedge commented on the issue: https://github.com/apache/zeppelin/pull/1231 @bzz . I will post a diagram of communication for clear view. `BittorrentNotebookRepo` does not implement/override any `NotebookRepo` methods. It uses all VFSNotebookRepo methods. ```java Note get(String noteId, AuthenticationInfo subject); List<NoteInfo> list(AuthenticationInfo subject); void save(Note note, AuthenticationInfo subject); ``` Only two key methods are ```java public String shareNote(String noteId); // take the note.json file and start seeding, return magnet link public void download(String magnetLink); // download the files in the torrent directory. ``` ``` Initial idea the we discussed was that BittorrentNotebookRepo encapsulates all the things that are required in order to get notebooks. ``` Could you please elaborate this point. Once the design and goal is clear, it will help me implement faster. Give me some time I will post a diagram..
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---