1 24 package com.scalagent.kjoram.comm; 25 26 30 public abstract class AbstractReply extends AbstractNotification 31 { 32 36 private int correlationId = -1; 37 38 39 45 public AbstractReply(int clientContext, int correlationId) 46 { 47 super(clientContext); 48 this.correlationId = correlationId; 49 } 50 51 54 public AbstractReply() 55 {} 56 57 58 59 public int getCorrelationId() 60 { 61 return correlationId; 62 } 63 } 64 | Popular Tags |