Example usage for org.apache.hadoop.io MapWritable putAll

List of usage examples for org.apache.hadoop.io MapWritable putAll

Introduction

In this page you can find the example usage for org.apache.hadoop.io MapWritable putAll.

Prototype

@Override
    public void putAll(Map<? extends Writable, ? extends Writable> t) 

Source Link

Usage

From source file:org.apache.giraph.types.ops.MapTypeOps.java

License:Apache License

@Override
public void set(MapWritable to, MapWritable from) {
    to.clear();
    to.putAll(from);
}