Examples of release()


Examples of com.kurento.kmf.media.WebRtcEndpoint.release()

      }
    }

    // Stop and release media elements
    recorderEP.stop();
    webRtcEP.release();
    recorderEP.release();

    // Media Pipeline #2
    PlayerEndpoint playerEP = mp.newPlayerEndpoint(
        FILE_SCHEMA + getDefaultFileForRecording()).build();
View Full Code Here

Examples of com.mks.api.CmdRunner.release()

        // Initialize class variables based on the connection information
        hostName = res.getConnectionHostname();
        port = res.getConnectionPort();
        userName = res.getConnectionUsername();
        password = paswd;
        cmdRunner.release();
        logger.info( "Successfully established connection " + userName + "@" + hostName + ":" + port );
        return res;
    }

    /**
 
View Full Code Here

Examples of com.nativelibs4java.opencl.CLEvent.release()

    for(int i=0;i<outputSize;i++) {
      layerOutput[outputIndex+i] = layerOutputF[i];
    }
   
    if( kernelCompletion!=null )
      kernelCompletion.release();
   
    return startIndex+(inputSize*outputSize);
  }

  @Override
 
View Full Code Here

Examples of com.netflix.astyanax.recipes.uniqueness.MultiRowUniquenessConstraint.release()

            LOG.error(e.getMessage());
            Assert.fail();
        }
       
        try {
            unique2.release();
        } catch (Exception e) {
            LOG.error(e.getMessage());
            Assert.fail();
        }
    }
View Full Code Here

Examples of com.netflix.astyanax.util.BlockingConcurrentWindowCounter.release()

                                    exception.compareAndSet(null, e);
                                    callback.onChunkException(chunkNumber, e);
                                }
                                finally {
                                    blocks.add(bb);
                                    chunkCounter.release(chunkNumber);
                                }
                            }
                        });
                    }
                    else {
View Full Code Here

Examples of com.netflix.curator.framework.recipes.locks.InterProcessMutex.release()

    @Override
    public void unlockRoot(Object lock) {
        try {
            final InterProcessMutex mutex = (InterProcessMutex) lock;
            mutex.release();
        } catch (Exception ex) {
            throw Throwables.propagate(ex);
        }
    }
View Full Code Here

Examples of com.orientechnologies.orient.core.index.hashindex.local.cache.ODiskCache.release()

              durablePage.setLsn(updatePageRecord.getLsn());

              cacheEntry.markDirty();
            } finally {
              cacheEntry.releaseExclusiveLock();
              expectedDiskCache.release(cacheEntry);
            }
          } else if (restoreRecord instanceof OFileCreatedCreatedWALRecord) {
            final OFileCreatedCreatedWALRecord fileCreatedCreatedRecord = (OFileCreatedCreatedWALRecord) restoreRecord;
            expectedDiskCache.openFile(
                fileCreatedCreatedRecord.getFileName().replace("actualLocalHashTable", "expectedLocalHashTable"),
View Full Code Here

Examples of com.orientechnologies.orient.core.storage.impl.local.OFreezableStorage.release()

  }

  public void release() {
    final OFreezableStorage storage = getFreezableStorage();
    if (storage != null) {
      storage.release();
    }
  }

  @Override
  public void freezeCluster(final int iClusterId) {
View Full Code Here

Examples of com.orientechnologies.orient.core.storage.impl.local.paginated.OLocalPaginatedStorage.release()

    else {
      OLogManager.instance().error(this, "We can not freeze non local storage.");
      return;
    }

    storage.release(iClusterId);
  }

  @Override
  public void freezeCluster(final int iClusterId, final boolean throwException) {
    if (getStorage() instanceof OLocalPaginatedStorage) {
View Full Code Here

Examples of com.ponysdk.core.UIContext.release()

            UIContext.setCurrent(uiContext);
            jettyWebSocket = newJettyWebsocket();
            PPusher.get().initialize(jettyWebSocket);
        } finally {
            UIContext.remove();
            uiContext.release();
        }

        return jettyWebSocket;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.