Created
March 24, 2015 13:48
-
-
Save sbesson/8a45c7a08b6072929239 to your computer and use it in GitHub Desktop.
OMERO parallelized session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| c=loadOmero(hostname); | |
| s=c.createSession(user, pass); | |
| uuid = s.getAdminService().getEventContext().sessionUuid; | |
| parfor i=1:2 | |
| c2 = loadOmero(hostname); | |
| s2= c2.joinSession(uuid); | |
| s2.getAdminService().getEventContext().userName | |
| end | |
| c.closeSession() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment