tobiassvn (Tobias Svensson)
- Login: tobiassvn
- Registered on: 09/27/2013
- Last sign in: 01/06/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
10/02/2013
-
10:15 PM Ruby Feature #8961: Synchronizable module to easily wrap methods in a mutex
- I suppose if this is being added to MonitorMixin it should probably be in Mutex_m as well?
09/27/2013
-
09:45 PM Ruby Feature #8961: Synchronizable module to easily wrap methods in a mutex
- Having this as a method on Module directly would of course be ideal. However, I believe the mutex/monitor used should still be exposed as a private method so it can be used without the 'synchronized' method.
-
08:23 PM Ruby Feature #8961 (Open): Synchronizable module to easily wrap methods in a mutex
- =begin
I propose a Synchronizable mixin to easily wrap methods in a mutex which works together with Ruby 2.1's method name symbols returned from '(({def}))'.
The Mixin adds a new '(({synchronized}))' class method which would alias th...