Here you go:
public class GetMessageResponse
{
    private String messageName;
    private long   messageLen;
    private long   messageOffset;

   private GetMessageResponse(String messageName, long messageLen, long 
messageOffset)
    {
        this.messageName      = messageName;
        this.messageLen       = messageLen;
        this.messageOffset = messageOffset ;
    }

    public static GetMessageResponse createMessageResponse(String messageName, 
long messageLen, long messageOffset)
    {
        return new GetMessageResponse(messageName, messageLen, messageOffset);
    }

    public long getMessageLen()
    {
        return messageLen;
    }

    public String getMessageName()
    {
        return messageName;
    }

    public long getMessageOffset()
    {
        return messageOffset;
    }
}

Thanks,
Guy

-----Original Message-----
From: Emmanuel Lecharny [mailto:[email protected]] 
Sent: Monday, September 20, 2010 10:46 AM
To: [email protected]
Cc: [email protected]
Subject: Fwd: Re: Possible synchronization issue

  --> Users mailing list, not dev mailing list ! Emmanuel, wake up !

  On 9/20/10 8:59 AM, Guy Itzhaki wrote:
>  Dear Emmanuel,
>  Do you believe you will take a look on this issue today or still struggling 
> the release?
I did and sent you a response. Or did I ? Damn, I can't find the mail
from my outbox... wtf ?

Ok, anyway, I'm missing the GetMessageResponse class, so I can't test
your code.

Can you send it to me ?

Thaks ?

-- 
Regards,
Cordialement,
Emmanuel Lécharny
www.iktek.com





Click here to report this message as SPAM: 
http://vsp.ateranetworks.com/ReportSpam.php?sid=9452a364e8c58e0d5f8f526f2f47a18e_bab5d7737b3ff2580cfd0ab1cb94775f
-- Powered by ATERA Networks --


Reply via email to