static Object processSilent(String processorID, Object in) { return processSilent(processorID, in, "in"); } static Object processSilent(String processorID, Object in, String outVar) { try { Class processor = hotwire(processorID); return processSilent(processor, in, outVar); } catch (Exception e) { throw new RuntimeException("Error in #" + parseSnippetID(processorID), e); } } static Object processSilent(Class processor, Object in) { return processSilent(processor, in, "in"); } static Object processSilent(Class processor, Object in, String outVar) { set(processor, "in", in); try { set(processor, "silent", true); } catch (Exception e) { e.printStackTrace(); } call(processor, "main", new Object[] {new String[0]}); return get(processor, outVar); }
Began life as a copy of #1000661
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1000689 | 
| Snippet name: | processSilent function (hotwire and call for processing) | 
| Eternal ID of this version: | #1000689/1 | 
| Text MD5: | 09ecf959bfd61f0cad6e1de540dd2179 | 
| Author: | stefan | 
| Category: | |
| Type: | JavaX fragment (include) | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2015-08-22 16:53:45 | 
| Source code size: | 807 bytes / 23 lines | 
| Pitched / IR pitched: | No / Yes | 
| Views / Downloads: | 1216 / 1862 | 
| Referenced in: | [show references] |