コード例 #1
0
ファイル: RMISink.java プロジェクト: gjherbiet/gs-core
 public void edgeAttributeAdded(
     String graphId, long timeId, String edgeId, String attribute, Object value) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.edgeAttributeAdded(graphId, timeId, edgeId, attribute, value);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }