Tabnine Logo
HystrixCassandraPut.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.netflix.zuul.dependency.cassandra.hystrix.HystrixCassandraPut
constructor

Best Java code snippets using com.netflix.zuul.dependency.cassandra.hystrix.HystrixCassandraPut.<init> (Showing top 4 results out of 315)

origin: com.netflix.zuul/zuul-core

public void updateFilterIndex(String rowKey, String filter_ids) {
  HashMap<String, Object> attributes = new HashMap<String, Object>();
  attributes.put("index_name", rowKey);
  attributes.put("filter_ids", filter_ids);
  new HystrixCassandraPut<String>(keyspace, "zuul_filter_indices", rowKey, attributes).execute();
}
origin: com.netflix.zuul/zuul-core

/**
 * Performs an insert/update for a row in Cassandra.
 *
 * @param rowKey
 * @param attributes
 */
public void upsert(String rowKey, Map<String, Object> attributes) {
  new HystrixCassandraPut<String>(keyspace, COLUMN_FAMILY, rowKey, attributes).execute();
}
origin: com.netflix.zuul/zuul-netflix

@Override
public void updateFilterIndex(String rowKey, String filter_ids) {
  HashMap<String, Object> attributes = new HashMap<String, Object>();
  attributes.put("index_name", rowKey);
  attributes.put("filter_ids", filter_ids);
  new HystrixCassandraPut<String>(keyspace, "zuul_filter_indices", rowKey, attributes).execute();
}
origin: com.netflix.zuul/zuul-netflix

/**
 * Performs an insert/update for a row in Cassandra.
 *
 * @param rowKey
 * @param attributes
 */
@Override
public void upsert(String rowKey, Map<String, Object> attributes) {
  new HystrixCassandraPut<String>(keyspace, COLUMN_FAMILY, rowKey, attributes).execute();
}
com.netflix.zuul.dependency.cassandra.hystrixHystrixCassandraPut<init>

Popular methods of HystrixCassandraPut

  • execute
  • getColumnFamilyViaColumnName

Popular in Java

  • Reactive rest calls using spring rest template
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • onRequestPermissionsResult (Fragment)
  • 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
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • JPanel (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • CodeWhisperer 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