Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
useless cosmetics hinted by qtcreator
[simgrid.git] / examples / java / dht / kademlia / KademliaTask.java
1 /* Copyright (c) 2012-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package dht.kademlia;
7
8 import org.simgrid.msg.Task;
9
10 public class KademliaTask extends Task {
11   protected int senderId;
12
13   public KademliaTask(int senderId) {
14     super("kademliatask",Common.COMP_SIZE,Common.COMM_SIZE);
15     this.senderId = senderId;
16   }
17
18   public int getSenderId() {
19     return senderId;
20   }
21 }