Package org.apache.wicket.util.concurrent

Examples of org.apache.wicket.util.concurrent.ConcurrentHashMap$Entry


  {
    Map classesToGetAndSetters = getClassesToGetAndSetters();
    Map getAndSetters = (Map)classesToGetAndSetters.get(clz);
    if (getAndSetters == null)
    {
      getAndSetters = new ConcurrentHashMap(8);
      classesToGetAndSetters.put(clz, getAndSetters);
    }

    IGetAndSet getAndSetter = (IGetAndSet)getAndSetters.get(exp);
    if (getAndSetter == null)
View Full Code Here


    if (result == null)
    {
      // Don't synchronize this - Doesn't matter if we create two of them,
      // as it's only a cache and the first will go out of scope and get
      // GC'ed.
      applicationToClassesToGetAndSetters.put(key, result = new ConcurrentHashMap(64));
    }
    return result;
  }
View Full Code Here

        {
          removeLast();
        }
      }
    });
    liveSessions = new ConcurrentHashMap();
  }
View Full Code Here

  public FilePageStore(File dir)
  {
    defaultWorkDir = new File(dir, "sessions/");
    defaultWorkDir.mkdirs();

    pagesToBeSerialized = new ConcurrentHashMap();
    pagesToBeSaved = new ConcurrentHashMap();
    appName = Application.get().getApplicationKey();

    saveThread = new PageSavingThread();
    Thread t = new Thread(saveThread, "FilePageSavingThread-" + appName);
    t.setDaemon(true);
View Full Code Here

    {
      return null;
    }
    else if (pageMapToList == null && createIfDoesNotExist == true)
    {
      pageMapToList = new ConcurrentHashMap();
      pageVersionMap.put(sessionId, pageMapToList);
    }

    List versions = (List)pageMapToList.get(pageMapName);
    if (versions == null && createIfDoesNotExist)
View Full Code Here

                    for (TestMethod testMethod : inputTestData.getTestMethod()) {
                        List<TestRecord> originalTestRecords = testMethod.getTestRecord();
                        for (TestRecord originalTestRecord : originalTestRecords) {
                            if (originalTestRecord.getId().equals(testRecord.get(RECORD_POSITION))) {
                                OutputData outputData = new OutputData();
                                Entry outputEntry = new Entry();
                                outputEntry.setKey(ACTUAL_RESULT);
                                outputEntry.setValue(testRecord.get(ACTUAL_RESULT).toString());
                                outputData.getEntry().add(outputEntry);
                                originalTestRecord.setOutputData(outputData);
                                outputDataAdded = true;
                                break;
                            }
View Full Code Here

                    for (TestMethod testMethod : inputTestData.getTestMethod()) {
                        List<TestRecord> originalTestRecords = testMethod.getTestRecord();
                        for (TestRecord originalTestRecord : originalTestRecords) {
                            if (originalTestRecord.getId().equals(testRecord.get(RECORD_POSITION))) {
                                OutputData outputData = new OutputData();
                                Entry outputEntry = new Entry();
                                outputEntry.setKey(ACTUAL_RESULT);
                                outputEntry.setValue(testRecord.get(ACTUAL_RESULT).toString());
                                Entry durationEntry = new Entry();
                                durationEntry.setKey(DURATION);
                                durationEntry.setValue(testRecord.get(DURATION).toString());
                                outputData.getEntry().add(outputEntry);
                                outputData.getEntry().add(durationEntry);
                                if(testRecord.get(TEST_STATUS) != null){
                                    Entry statusEntry = new Entry();
                                    statusEntry.setKey(TEST_STATUS);
                                    statusEntry.setValue(testRecord.get(TEST_STATUS).toString());
                                    outputData.getEntry().add(statusEntry);
                                }
                               
                               
                                originalTestRecord.setOutputData(outputData);
                                outputDataAdded = true;
                                break;
                            }
                        }
                        if (outputDataAdded) {
                            break;
                        }
                    }
                }else{
                    //Method did not return any data. So only write the duration as output
                    for (TestMethod testMethod : inputTestData.getTestMethod()) {
                        List<TestRecord> originalTestRecords = testMethod.getTestRecord();
                        for (TestRecord originalTestRecord : originalTestRecords) {
                            if (originalTestRecord.getId().equals(testRecord.get(RECORD_POSITION))) {
                                OutputData outputData = new OutputData();
                                Entry durationEntry = new Entry();
                                durationEntry.setKey(DURATION);
                                durationEntry.setValue(testRecord.get(DURATION).toString());
                                outputData.getEntry().add(durationEntry);
                                originalTestRecord.setOutputData(outputData);
                                outputDataAdded = true;
                                break;
                            }
View Full Code Here

TOP

Related Classes of org.apache.wicket.util.concurrent.ConcurrentHashMap$Entry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.