Notification showMessage Problem

Hi All

I am having intermittent problem about Notication showMessage.I am trying to show message as below

Notification notif = new Notification(message,“”, Notification.TYPE_HUMANIZED_MESSAGE,false);
notif.setDelayMsec(800);
notif.show(Page.getCurrent());

Although i set delay time to 800msec,The message is not dissappeared until i click on it.

Is there anyone who experienced a problem like this before.

Regards

Note : The vaadin version that i am using is 7.0.4.

Do you move the mouse after the notifaction.show is executed? …because the timer (800ms) doesn’t start exactly when the method is executed but when you move the mouse the first time afterwards. This way the user has the possibility to read it.

Hi thank you for your response.

I am moving the cursor after i saw the message ,and the message is not dissappeared unless i click on it.