-
Notifications
You must be signed in to change notification settings - Fork 111
Move models and RPC methods out of root package #209
Conversation
+1 |
big +1 Matt Massie notifications@github.com writes:
|
+1 On Fri, Dec 5, 2014 at 2:53 PM, Mark Diekhans notifications@github.com
|
I think it's a good move separating the namespace like this, but is Also, 'remote procedure call' is a bit more general than what we're actually doing here; we're just exposing methods to access data, rather than providing a general approach to running code remotely. Since everything within the package is of the form |
@jeromekelleher I originally used (I'm surprised that heavy-duty Unix people were confused what RPC meant since XDR/RPC has been a part of Unix since the 1980s) |
Ah, misread your comment. Make sense they were confused if they thought all RPC is XDR/RPC. |
This updates the namespace to place the models into the org.ga4gh.models package and RPC methods into the org.ga4gh.rpc package. Previously, all objects were on the root package org.ga4gh.
I found a little time now and made the |
Look great, thanks @massie! +1. Yeah, they got confused because they thought that the Python 'RPC' layer that I'd written was literally using Sun RPC. With good reason too, as that would be a deeply strange and weird thing to do! |
+1 |
Move models and RPC methods out of root package
This updates the namespace to place the models into the
org.ga4gh.models package and RPC methods into the
org.ga4gh.rpc package. Previously, all objects were on
the root package org.ga4gh.