public void queryResult(long id, String to, String from, Serializable value)
{
ActorStream stream = findActorStream(to);
if (stream != null)
stream.queryResult(id, to, from, value);
else
throw new RuntimeException(L.l("{0}: {1} is an unknown actor stream.",
this, to));
}