Tabnine Logo
BroadcastVariableMaterialization.decrementReference
Code IndexAdd Tabnine to your IDE (free)

How to use
decrementReference
method
in
org.apache.flink.runtime.broadcast.BroadcastVariableMaterialization

Best Java code snippets using org.apache.flink.runtime.broadcast.BroadcastVariableMaterialization.decrementReference (Showing top 4 results out of 315)

origin: org.apache.flink/flink-runtime

public void releaseReference(BroadcastVariableKey key, BatchTask<?, ?> referenceHolder) {
  BroadcastVariableMaterialization<?, ?> mat = variables.get(key);
  // release this reference
  if (mat.decrementReference(referenceHolder)) {
    // remove if no one holds a reference and no one concurrently replaced the entry
    variables.remove(key, mat);
  }
}
origin: com.alibaba.blink/flink-runtime

public void releaseReference(BroadcastVariableKey key, BatchTask<?, ?> referenceHolder) {
  BroadcastVariableMaterialization<?, ?> mat = variables.get(key);
  // release this reference
  if (mat.decrementReference(referenceHolder)) {
    // remove if no one holds a reference and no one concurrently replaced the entry
    variables.remove(key, mat);
  }
}
origin: org.apache.flink/flink-runtime_2.10

public void releaseReference(BroadcastVariableKey key, BatchTask<?, ?> referenceHolder) {
  BroadcastVariableMaterialization<?, ?> mat = variables.get(key);
  
  // release this reference
  if (mat.decrementReference(referenceHolder)) {
    // remove if no one holds a reference and no one concurrently replaced the entry
    variables.remove(key, mat);
  }
}

origin: org.apache.flink/flink-runtime_2.11

public void releaseReference(BroadcastVariableKey key, BatchTask<?, ?> referenceHolder) {
  BroadcastVariableMaterialization<?, ?> mat = variables.get(key);
  // release this reference
  if (mat.decrementReference(referenceHolder)) {
    // remove if no one holds a reference and no one concurrently replaced the entry
    variables.remove(key, mat);
  }
}
org.apache.flink.runtime.broadcastBroadcastVariableMaterializationdecrementReference

Popular methods of BroadcastVariableMaterialization

  • <init>
  • decrementReferenceIfHeld
  • decrementReferenceInternal
  • getVariable
  • materializeVariable

Popular in Java

  • Reading from database using SQL prepared statement
  • putExtra (Intent)
  • onCreateOptionsMenu (Activity)
  • addToBackStack (FragmentTransaction)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Socket (java.net)
    Provides a client-side TCP socket.
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now