1 24 25 package org.objectweb.dream.multiplexer; 26 27 import java.util.ArrayList ; 28 import java.util.Map ; 29 30 import org.objectweb.fractal.api.NoSuchInterfaceException; 31 32 42 public interface PullPushMultiplexer 43 { 44 45 48 String ITF_NAME = "multiplexer"; 49 50 66 Attachment attach(String [] inputNames, Map [] inputContexts, 67 String [] outputNames, Map [] outputContexts, Map parameters) 68 throws NoSuchInterfaceException; 69 70 75 void detach(Attachment attachment); 76 77 83 void update(Attachment attachment); 84 85 90 ArrayList getAttachments(); 91 } | Popular Tags |