Right now I think it's not possible to receive a message on a queue that uses Session filtering only by one SessionId as we can do in C# with the following code:
MessageSession receiver = null;
receiver = queueClient.AcceptMessageSession(msg.ReplyToSessionId);
BrokeredMessage receivedMessage = receiver.Receive(TimeSpan.FromSeconds(timeout));
Are there any plans to include this feature in the java SDK ?
Right now I think it's not possible to receive a message on a queue that uses Session filtering only by one SessionId as we can do in C# with the following code:
MessageSession receiver = null;
receiver = queueClient.AcceptMessageSession(msg.ReplyToSessionId);
BrokeredMessage receivedMessage = receiver.Receive(TimeSpan.FromSeconds(timeout));
Are there any plans to include this feature in the java SDK ?