Victor Kirhenshtein

Results 11 comments of Victor Kirhenshtein

Hello! Sorry to repeat the question above, but is there any chance of RAP 3.29 being added to Maven Central?

I see few issues with this change: 1. It seems that HTTP response code is no longer returned to the server for direct request (was message filed VID_WEBSVC_RESPONSE_CODE). 2. What...

Also, custom request should not attempt to interpret/parse response body, just store it in cache if requested and return to caller.

My only concern regarding last change is that cache indicator should be first argument. Usually in those (quite rare) cases when we use named function arguments in NXSL they are...

Yes, that's correct. Please rework as suggested.

It looks to be a bit overkill on locking. There is no point to lock mutex around reading / updating boolean variable or single integer variable. It is guaranteed that...

> It looks to be a bit overkill on locking. There is no point to lock mutex around reading / updating boolean variable or single integer variable. It is guaranteed...

> > In worst case reader will get value that was valid few milliseconds ago > > I agree it would be, if this variable was volatile. For non-volatile, the...