Whatever message this page gives is out now! Go check it out!
public void setCFCListeners(String[] listeners) |
| Parameter | Description |
listeners | Array of absolute file paths to CFCs to which the gateway forwards messages when it gets events. |
public void setCFCListeners(String[] listeners) { ArrayList aListeners = new ArrayList(); for(int i = 0; i<listeners.length; i++) { aListeners.add(listeners[i]); } // Try not to pull the rug out from underneath a running message synchronized (cfcListeners) { cfcListeners = aListeners; } } |