Tagged Questions

2
votes
1answer
27 views

Temporal data using NHibernate

Hi, Can anyone supply some tips/pointers/links on how to implement a temporal state-table with NHibernate? I.e., each entity table has *start_date* and *end_date* columns that describe the time …
2
votes
3answers
92 views

Is event listener using CPU time

Maybe this is a dumb question, but do event listeners use CPU cycles like a timer, or are they inactive until the event is fired? Is it language specific, or do all languages handle this basically …
1
vote
1answer
67 views

How to properly configure NHibernate event listeners

I'm trying to use an event listener for the first time. All samples I've seen show how easy it is to configure, but for some reason I'm having trouble - it doesn't seem to be called. I suspect I'm …
1
vote
2answers
91 views

how to add event listener via fluent nhibernate?

I want to add an event listener (IPreUpdateEventListener) to add NH but I can't seem to find an example when using a fluent configuration. I want to be able to add the listener when I create the …
0
votes
2answers
528 views

How to get IFRAME to listen to same events as parent (and fire the same handlers)

I've got an HTML page (the parent) with an embedded IFRAME. The parent page has a couple of event listeners for mouse and keyboard events, as shown below (I'm using the Prototype library). var …