SSSPSink.java 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/***********************************************************************************************************************
 *
 * Copyright (C) 2010-2014 by the Stratosphere project (http://stratosphere.eu)
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 **********************************************************************************************************************/

Y
Yingjun Wu 已提交
16
package eu.stratosphere.streaming.examples.iterative.sssp;
17 18 19 20

import eu.stratosphere.streaming.api.invokable.UserSinkInvokable;
import eu.stratosphere.streaming.api.streamrecord.StreamRecord;

Y
Yingjun Wu 已提交
21
public class SSSPSink extends UserSinkInvokable {
22 23 24 25
	private static final long serialVersionUID = 1L;

	@Override
	public void invoke(StreamRecord record) throws Exception {
Y
Yingjun Wu 已提交
26
		// TODO Auto-generated method stub
27 28 29 30 31 32 33 34
		System.out.println("received record...");
		int tupleNum = record.getNumOfTuples();
		System.out.println("============================================");
		for (int i = 0; i < tupleNum; ++i) {
			System.out.println("name=" + record.getField(i, 0) + ", grade="
					+ record.getField(i, 1) + ", salary="
					+ record.getField(i, 2));
		}
Y
Yingjun Wu 已提交
35
		System.out.println("============================================");		
36
	}
Y
Yingjun Wu 已提交
37
}