SlideShare a Scribd company logo
<Insert Picture Here>
Coherence Live Events
Harvey Raja
Principal Member Technical Staff, Cloud Application Foundation
Oracle Coherence
Oracle Fusion Middleware 12c
Cloud Application Foundation
You Video Series
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.2
The following is intended to outline our general product
direction. It is intended for information purposes only, and
may not be incorporated into any contract.
It is not a commitment to deliver any material, code, or
functionality, and should not be relied upon in making
purchasing decisions. The development, release, and timing
of any features or functionality described for Oracle s
products remains at the sole discretion of Oracle.
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.3
Cloud Application Foundation
Coherence 12c Demonstration – Live Events
§  Complete
§  Open
§  Integrated
§  Best in Class
§  On Premise – Private Cloud
§  Public Cloud
Cloud Application Foundation
Traffic Director/Web Tier
WebLogic Server Coherence Tuxedo
Virtual Assembly Builder
ORACLE Cloud
Exalogic Elastic Cloud
Live Events
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.4
Coherence Eventing Mechanisms
§  MapListener
–  Client-side “post”-events
§  Triggers
–  Server-side “pre”-events
§  Backing Map Listeners
–  Server-side “post”-events
§  Others
–  PartitionListener, MemberListener, ServiceListener
Existing
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.5
Coherence Eventing Mechanisms
§  Distinct registration mechanism per event type
§  No commonality for client interfaces or events
§  Are the events synchronously or asynchronously dispatched?
Disadvantages
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.6
Live Event Model
§  EntryEvent
–  Data related
§  EntryProcessorEvent
–  EntryProcessor invocation
§  TransferEvent
–  Partition redistribution
§  TransactionEvent
–  Cross cache event
PartitionedCache PartitionedService
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.7
Data-Related Events
§  BinaryEntry-based
public interface EntryEvent!
extends Event<EntryEvent.Type>!
{!
/**!
* Return the immutable Set of {@link BinaryEntry entries} on which the!
* action represented by this {@link EntryEvent} occurred.!
*!
* @return the Set of entries represented by this event!
*/!
public Set<BinaryEntry> getEntrySet();!
!
!
public static enum Type!
{!
INSERTING, INSERTED, UPDATING, UPDATED, REMOVING, REMOVED!
}!
}!
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.8
Data-Related Events
NamedCache.put()NamedCache.put()
EventInterceptor
INSERTING
EventInterceptor
INSERTING
10110110
00101010
11010011
Backup
(async)
INSERTED
Backup
(async)
INSERTED
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.9
EntryProcessor-Related Events
§  BinaryEntry-based
public interface EntryProcessorEvent!
extends Event<EntryEvent.Type>!
{!
"public Set<BinaryEntry> getEntrySet();!
/**!
* Return the {@link EntryProcessor} associated with this {@link!
* EntryProcessorEvent}.!
*!
* @return the entry processor associated with this event!
*/!
public EntryProcessor getProcessor();!
!
public static enum Type!
{!
EXECUTING, EXECUTED!
}!
}!
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.10
EntryProcessor-Related Events
NamedCache.invoke()NamedCache.invoke() EventInterceptor
EXECUTING
EntryProcessor
EventInterceptor
EXECUTING
EntryProcessor
10110110
00101010
11010011
10110110
00101010
11010011
Backup
(async)
EXECUTED
Backup
(async)
EXECUTED
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.11
Transfer-Related Events
§  BinaryEntry-based
public interface TransferEvent!
extends Event<EntryEvent.Type>!
{!
public int getPartitionId();!
public Member getLocalMember();!
public Member getRemoteMember();!
/**!
* Return a map of cache names and associated set of read-only {@link!
* BinaryEntry entries} encapsulated in this {@link TransferEvent}. The!
* returned map and contained sets are immutable.!
*!
* @return a map of cache names and associated set of entries!
*/!
public Map<String, Set<BinaryEntry>> getEntries();!
!
public static enum Type!
{!
DEPARTING, ARRIVED!
}!
}!
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.12
ARRIVEDARRIVED
Transfer-Related Events
EventInterceptor EventInterceptor
EventInterceptor
EventInterceptor
DEPARTING
EventInterceptor
DEPARTING
EventInterceptor
DEPARTING
EventInterceptor
DEPARTING
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.13
Transaction-Related Events
§  All entries enlisted within a partition local transaction
§  BinaryEntry-based
public interface TransactionEvent!
extends Event<TransactionEvent.Type>!
{!
/**!
* A set of {@link BinaryEntry entries} enlisted within this!
* transaction.!
*!
* @return a set of entries enlisted within this transaction!
*/!
public Set<BinaryEntry> getEntrySet();!
!
public static enum Type!
{!
COMMITTING, COMMITTED!
}!
}!
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.14
COMMITTED
Backup
(async)
EventInterceptor
Transaction-Related Events
NamedCache
.invokeAll({A,B})
NamedCache
.invokeAll({A,B}) EntryProcessor
Keys:{A,B}Keys:{A,B}
enlist:{C}enlist:{C}
COMMITTING:{A,B,C}COMMITTING:{A,B,C}
COMMITTED
Backup
(async)
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.15
Registration
§  distributed-scheme
–  PartitionedService level interceptors: TransferEvent & TransactionEvent
–  PartitionedCache events for all caches
§  cache-scheme-mapping
–  PartitionedCache level interceptors: EntryEvent & EntryProcessorEvent
–  Ties to caches that conform to the cache-name pattern
§  Use Annotation & Generics to filter events
Declarative – Cache Configuration
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.16
Registration
Declarative – Cache Configuration
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.17
Registration
§  ConfigurableCacheFactory holds an InterceptorRegistry:
§  Annotation and Generics on interceptor are honored
§  Services and caches can be filtered by implementing:
EventDispatcherAwareInterceptor
Programmatic
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.18
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.19
Join the Coherence Community
http://coherence.oracle.com
@OracleCoherence
/OracleCoherence
blogs.oracle.com/OracleCoherence
Group: Oracle Coherence Users
/OracleCoherence
coherence.oracle.com/display/CSIG
Coherence Special Interest Group
<Insert Picture Here>
Coherence Live Events
Harvey Raja
Principal Member Technical Staff, Cloud Application Foundation
Oracle Coherence
Oracle Fusion Middleware 12c
Cloud Application Foundation
You Video Series

More Related Content

What's hot

Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right way
Thibaud Desodt
 
Vert.x - Reactive & Distributed [Devoxx version]
Vert.x - Reactive & Distributed [Devoxx version]Vert.x - Reactive & Distributed [Devoxx version]
Vert.x - Reactive & Distributed [Devoxx version]
Orkhan Gasimov
 
Marcin Szałowicz - MySQL Workbench
Marcin Szałowicz - MySQL WorkbenchMarcin Szałowicz - MySQL Workbench
Marcin Szałowicz - MySQL Workbench
Women in Technology Poland
 
Provisioning with OSGi Subsystems and Repository using Apache Aries and Felix
Provisioning with OSGi Subsystems and Repository using Apache Aries and FelixProvisioning with OSGi Subsystems and Repository using Apache Aries and Felix
Provisioning with OSGi Subsystems and Repository using Apache Aries and Felix
David Bosschaert
 
Form認証で学ぶSpring Security入門
Form認証で学ぶSpring Security入門Form認証で学ぶSpring Security入門
Form認証で学ぶSpring Security入門
Ryosuke Uchitate
 
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
Microsoft Technet France
 
Building scalable applications with hazelcast
Building scalable applications with hazelcastBuilding scalable applications with hazelcast
Building scalable applications with hazelcast
Fuad Malikov
 
MySQL Tech Café #8: MySQL 8.0 for Python Developers
MySQL Tech Café #8: MySQL 8.0 for Python DevelopersMySQL Tech Café #8: MySQL 8.0 for Python Developers
MySQL Tech Café #8: MySQL 8.0 for Python Developers
Frederic Descamps
 
Maximize the power of OSGi
Maximize the power of OSGiMaximize the power of OSGi
Maximize the power of OSGi
David Bosschaert
 
SIngle Sign On with Keycloak
SIngle Sign On with KeycloakSIngle Sign On with Keycloak
SIngle Sign On with Keycloak
Julien Pivotto
 
Guice gin
Guice ginGuice gin
Guice gin
Robert Cooper
 
Sapphire Gimlets
Sapphire GimletsSapphire Gimlets
Sapphire Gimlets
Robert Cooper
 
Finally, EE Security API JSR 375
Finally, EE Security API JSR 375Finally, EE Security API JSR 375
Finally, EE Security API JSR 375
Alex Kosowski
 
Advance MySQL Docstore Features
Advance MySQL Docstore FeaturesAdvance MySQL Docstore Features
Advance MySQL Docstore Features
sankalita chakraborty
 
the State of the Dolphin - October 2020
the State of the Dolphin - October 2020the State of the Dolphin - October 2020
the State of the Dolphin - October 2020
Frederic Descamps
 
Bkbiet day2 & 3
Bkbiet day2 & 3Bkbiet day2 & 3
Bkbiet day2 & 3
mihirio
 
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 201910 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
Matt Raible
 
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with MagentoMagento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
varien
 

What's hot (19)

Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right way
 
Vert.x - Reactive & Distributed [Devoxx version]
Vert.x - Reactive & Distributed [Devoxx version]Vert.x - Reactive & Distributed [Devoxx version]
Vert.x - Reactive & Distributed [Devoxx version]
 
Marcin Szałowicz - MySQL Workbench
Marcin Szałowicz - MySQL WorkbenchMarcin Szałowicz - MySQL Workbench
Marcin Szałowicz - MySQL Workbench
 
Provisioning with OSGi Subsystems and Repository using Apache Aries and Felix
Provisioning with OSGi Subsystems and Repository using Apache Aries and FelixProvisioning with OSGi Subsystems and Repository using Apache Aries and Felix
Provisioning with OSGi Subsystems and Repository using Apache Aries and Felix
 
Form認証で学ぶSpring Security入門
Form認証で学ぶSpring Security入門Form認証で学ぶSpring Security入門
Form認証で学ぶSpring Security入門
 
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
[AzureCamp 24 Juin 2014] Cache Distribué par Thomas Conté
 
Building scalable applications with hazelcast
Building scalable applications with hazelcastBuilding scalable applications with hazelcast
Building scalable applications with hazelcast
 
MySQL Tech Café #8: MySQL 8.0 for Python Developers
MySQL Tech Café #8: MySQL 8.0 for Python DevelopersMySQL Tech Café #8: MySQL 8.0 for Python Developers
MySQL Tech Café #8: MySQL 8.0 for Python Developers
 
Maximize the power of OSGi
Maximize the power of OSGiMaximize the power of OSGi
Maximize the power of OSGi
 
SIngle Sign On with Keycloak
SIngle Sign On with KeycloakSIngle Sign On with Keycloak
SIngle Sign On with Keycloak
 
Guice gin
Guice ginGuice gin
Guice gin
 
Sapphire Gimlets
Sapphire GimletsSapphire Gimlets
Sapphire Gimlets
 
Finally, EE Security API JSR 375
Finally, EE Security API JSR 375Finally, EE Security API JSR 375
Finally, EE Security API JSR 375
 
Advance MySQL Docstore Features
Advance MySQL Docstore FeaturesAdvance MySQL Docstore Features
Advance MySQL Docstore Features
 
the State of the Dolphin - October 2020
the State of the Dolphin - October 2020the State of the Dolphin - October 2020
the State of the Dolphin - October 2020
 
An intro to cqrs
An intro to cqrsAn intro to cqrs
An intro to cqrs
 
Bkbiet day2 & 3
Bkbiet day2 & 3Bkbiet day2 & 3
Bkbiet day2 & 3
 
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 201910 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
10 Excellent Ways to Secure Your Spring Boot Application - Devoxx Belgium 2019
 
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with MagentoMagento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
Magento Imagine eCommerce Conference - February 2011 - Unit Testing with Magento
 

Viewers also liked

Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčević
Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan RajčevićZakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčević
Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčevićkomorabl
 
Program Konferencije o IKT
Program Konferencije o IKTProgram Konferencije o IKT
Program Konferencije o IKT
komorabl
 
Igor Pandžić prezentacija
Igor Pandžić prezentacijaIgor Pandžić prezentacija
Igor Pandžić prezentacija
komorabl
 
Caster111111111
Caster111111111Caster111111111
Caster111111111caster21
 
Program Konferencije o IKT
Program Konferencije o IKTProgram Konferencije o IKT
Program Konferencije o IKT
komorabl
 
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
harvraja
 
Samir Mesić prezentacija
Samir Mesić prezentacijaSamir Mesić prezentacija
Samir Mesić prezentacija
komorabl
 
Coherence 12.1.3 hidden gems
Coherence 12.1.3 hidden gemsCoherence 12.1.3 hidden gems
Coherence 12.1.3 hidden gems
harvraja
 
Prezentacija east code
Prezentacija east codePrezentacija east code
Prezentacija east code
komorabl
 
Ministarstvo prosvjete u kulture - Sanela Dojčinović
Ministarstvo prosvjete u kulture - Sanela DojčinovićMinistarstvo prosvjete u kulture - Sanela Dojčinović
Ministarstvo prosvjete u kulture - Sanela Dojčinovićkomorabl
 
Κλασική εποχή β'
Κλασική εποχή β'Κλασική εποχή β'
Κλασική εποχή β'varalig
 
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžić
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor PandžićZakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžić
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžićkomorabl
 
Tasso di cambio reale
Tasso di cambio realeTasso di cambio reale
Tasso di cambio reale
cambiovaluta
 
WeB Početni sastanak - Igor Pandžić
WeB Početni sastanak - Igor PandžićWeB Početni sastanak - Igor Pandžić
WeB Početni sastanak - Igor Pandžićkomorabl
 
Coherence 12.1.2 Hidden Gems
Coherence 12.1.2 Hidden GemsCoherence 12.1.2 Hidden Gems
Coherence 12.1.2 Hidden Gems
harvraja
 
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...komorabl
 
Radna snaga u it industriji - Brano Vujičić
Radna snaga u it industriji - Brano VujičićRadna snaga u it industriji - Brano Vujičić
Radna snaga u it industriji - Brano Vujičićkomorabl
 
Banche centrali
Banche centraliBanche centrali
Banche centrali
cambiovaluta
 
ραψωδία Ζ στ. 369 465
ραψωδία Ζ στ. 369 465ραψωδία Ζ στ. 369 465
ραψωδία Ζ στ. 369 465varalig
 

Viewers also liked (20)

Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčević
Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan RajčevićZakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčević
Zakonsko okruženje kao preduslov razvoja informacionog društva - Srđan Rajčević
 
Program Konferencije o IKT
Program Konferencije o IKTProgram Konferencije o IKT
Program Konferencije o IKT
 
Igor Pandžić prezentacija
Igor Pandžić prezentacijaIgor Pandžić prezentacija
Igor Pandžić prezentacija
 
Caster111111111
Caster111111111Caster111111111
Caster111111111
 
Program Konferencije o IKT
Program Konferencije o IKTProgram Konferencije o IKT
Program Konferencije o IKT
 
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
JavaOne-2013: Save Scarce Resources by Managing Terabytes of Objects off-heap...
 
Samir Mesić prezentacija
Samir Mesić prezentacijaSamir Mesić prezentacija
Samir Mesić prezentacija
 
Coherence 12.1.3 hidden gems
Coherence 12.1.3 hidden gemsCoherence 12.1.3 hidden gems
Coherence 12.1.3 hidden gems
 
Prezentacija east code
Prezentacija east codePrezentacija east code
Prezentacija east code
 
Ministarstvo prosvjete u kulture - Sanela Dojčinović
Ministarstvo prosvjete u kulture - Sanela DojčinovićMinistarstvo prosvjete u kulture - Sanela Dojčinović
Ministarstvo prosvjete u kulture - Sanela Dojčinović
 
Κλασική εποχή β'
Κλασική εποχή β'Κλασική εποχή β'
Κλασική εποχή β'
 
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžić
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor PandžićZakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžić
Zakonsko okruženje kao preduslov razvoja informacionog društva - Igor Pandžić
 
Tasso di cambio reale
Tasso di cambio realeTasso di cambio reale
Tasso di cambio reale
 
WeB Početni sastanak - Igor Pandžić
WeB Početni sastanak - Igor PandžićWeB Početni sastanak - Igor Pandžić
WeB Početni sastanak - Igor Pandžić
 
Coherence 12.1.2 Hidden Gems
Coherence 12.1.2 Hidden GemsCoherence 12.1.2 Hidden Gems
Coherence 12.1.2 Hidden Gems
 
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...
Primjena informaciono-komunikacionih tehnologija u privrednim društvima kao b...
 
Radna snaga u it industriji - Brano Vujičić
Radna snaga u it industriji - Brano VujičićRadna snaga u it industriji - Brano Vujičić
Radna snaga u it industriji - Brano Vujičić
 
Od 09
Od 09Od 09
Od 09
 
Banche centrali
Banche centraliBanche centrali
Banche centrali
 
ραψωδία Ζ στ. 369 465
ραψωδία Ζ στ. 369 465ραψωδία Ζ στ. 369 465
ραψωδία Ζ στ. 369 465
 

Similar to Coherence 12.1.2 Live Events

Java API for WebSocket 1.0: Java EE 7 and GlassFish
Java API for WebSocket 1.0: Java EE 7 and GlassFishJava API for WebSocket 1.0: Java EE 7 and GlassFish
Java API for WebSocket 1.0: Java EE 7 and GlassFish
Arun Gupta
 
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Masoud Kalali
 
Presente e Futuro: Java EE.next()
Presente e Futuro: Java EE.next()Presente e Futuro: Java EE.next()
Presente e Futuro: Java EE.next()
Bruno Borges
 
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
Shing Wai Chan
 
Java EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e MudançasJava EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e Mudanças
Bruno Borges
 
Reactive Jersey Client
Reactive Jersey ClientReactive Jersey Client
Reactive Jersey Client
Michal Gajdos
 
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten ZiegelerOSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
mfrancis
 
OTN Tour 2013: What's new in java EE 7
OTN Tour 2013: What's new in java EE 7OTN Tour 2013: What's new in java EE 7
OTN Tour 2013: What's new in java EE 7
Bruno Borges
 
As novidades do Java EE 7: do HTML5 ao JMS 2.0
As novidades do Java EE 7: do HTML5 ao JMS 2.0As novidades do Java EE 7: do HTML5 ao JMS 2.0
As novidades do Java EE 7: do HTML5 ao JMS 2.0
Bruno Borges
 
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
Shing Wai Chan
 
Getting started with Websocket and Server-sent Events using Java - Arun Gupta
Getting started with Websocket and Server-sent Events using Java - Arun Gupta Getting started with Websocket and Server-sent Events using Java - Arun Gupta
Getting started with Websocket and Server-sent Events using Java - Arun Gupta
jaxconf
 
E29632
E29632E29632
E29632
ssfdsdsf
 
Getting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
Getting Started with WebSocket and Server-Sent Events using Java by Arun GuptaGetting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
Getting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
Codemotion
 
2015 JavaOne LAD JSF 2.3 & MVC 1.0
2015 JavaOne LAD JSF 2.3 & MVC 1.02015 JavaOne LAD JSF 2.3 & MVC 1.0
2015 JavaOne LAD JSF 2.3 & MVC 1.0
mnriem
 
OID Install and Config
OID Install and ConfigOID Install and Config
OID Install and Config
Vigilant Technologies
 
Salesforce meetup | Lightning Web Component
Salesforce meetup | Lightning Web ComponentSalesforce meetup | Lightning Web Component
Salesforce meetup | Lightning Web Component
Accenture Hungary
 
RIBs - Fragments which work
RIBs - Fragments which workRIBs - Fragments which work
RIBs - Fragments which work
Dmitry Zaytsev
 
ADF Mobile: Implementing Data Caching and Synching
ADF Mobile: Implementing Data Caching and SynchingADF Mobile: Implementing Data Caching and Synching
ADF Mobile: Implementing Data Caching and Synching
Steven Davelaar
 
Aplicações HTML5 com Java EE 7 e NetBeans
Aplicações HTML5 com Java EE 7 e NetBeansAplicações HTML5 com Java EE 7 e NetBeans
Aplicações HTML5 com Java EE 7 e NetBeans
Bruno Borges
 
Best Practices for JSF, Gameduell 2013
Best Practices for JSF, Gameduell 2013Best Practices for JSF, Gameduell 2013
Best Practices for JSF, Gameduell 2013
Edward Burns
 

Similar to Coherence 12.1.2 Live Events (20)

Java API for WebSocket 1.0: Java EE 7 and GlassFish
Java API for WebSocket 1.0: Java EE 7 and GlassFishJava API for WebSocket 1.0: Java EE 7 and GlassFish
Java API for WebSocket 1.0: Java EE 7 and GlassFish
 
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
 
Presente e Futuro: Java EE.next()
Presente e Futuro: Java EE.next()Presente e Futuro: Java EE.next()
Presente e Futuro: Java EE.next()
 
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
JavaOne San Francisco 2013 - Servlet 3.1 (JSR 340)
 
Java EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e MudançasJava EE 7 - Novidades e Mudanças
Java EE 7 - Novidades e Mudanças
 
Reactive Jersey Client
Reactive Jersey ClientReactive Jersey Client
Reactive Jersey Client
 
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten ZiegelerOSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
OSGi Enterprise R6 specs are out! - David Bosschaert & Carsten Ziegeler
 
OTN Tour 2013: What's new in java EE 7
OTN Tour 2013: What's new in java EE 7OTN Tour 2013: What's new in java EE 7
OTN Tour 2013: What's new in java EE 7
 
As novidades do Java EE 7: do HTML5 ao JMS 2.0
As novidades do Java EE 7: do HTML5 ao JMS 2.0As novidades do Java EE 7: do HTML5 ao JMS 2.0
As novidades do Java EE 7: do HTML5 ao JMS 2.0
 
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
JavaOne Shanghai 2013 - Servlet 3.1 (JSR 340)
 
Getting started with Websocket and Server-sent Events using Java - Arun Gupta
Getting started with Websocket and Server-sent Events using Java - Arun Gupta Getting started with Websocket and Server-sent Events using Java - Arun Gupta
Getting started with Websocket and Server-sent Events using Java - Arun Gupta
 
E29632
E29632E29632
E29632
 
Getting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
Getting Started with WebSocket and Server-Sent Events using Java by Arun GuptaGetting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
Getting Started with WebSocket and Server-Sent Events using Java by Arun Gupta
 
2015 JavaOne LAD JSF 2.3 & MVC 1.0
2015 JavaOne LAD JSF 2.3 & MVC 1.02015 JavaOne LAD JSF 2.3 & MVC 1.0
2015 JavaOne LAD JSF 2.3 & MVC 1.0
 
OID Install and Config
OID Install and ConfigOID Install and Config
OID Install and Config
 
Salesforce meetup | Lightning Web Component
Salesforce meetup | Lightning Web ComponentSalesforce meetup | Lightning Web Component
Salesforce meetup | Lightning Web Component
 
RIBs - Fragments which work
RIBs - Fragments which workRIBs - Fragments which work
RIBs - Fragments which work
 
ADF Mobile: Implementing Data Caching and Synching
ADF Mobile: Implementing Data Caching and SynchingADF Mobile: Implementing Data Caching and Synching
ADF Mobile: Implementing Data Caching and Synching
 
Aplicações HTML5 com Java EE 7 e NetBeans
Aplicações HTML5 com Java EE 7 e NetBeansAplicações HTML5 com Java EE 7 e NetBeans
Aplicações HTML5 com Java EE 7 e NetBeans
 
Best Practices for JSF, Gameduell 2013
Best Practices for JSF, Gameduell 2013Best Practices for JSF, Gameduell 2013
Best Practices for JSF, Gameduell 2013
 

Recently uploaded

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 

Recently uploaded (20)

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 

Coherence 12.1.2 Live Events

  • 1. <Insert Picture Here> Coherence Live Events Harvey Raja Principal Member Technical Staff, Cloud Application Foundation Oracle Coherence Oracle Fusion Middleware 12c Cloud Application Foundation You Video Series
  • 2. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.
  • 3. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.3 Cloud Application Foundation Coherence 12c Demonstration – Live Events §  Complete §  Open §  Integrated §  Best in Class §  On Premise – Private Cloud §  Public Cloud Cloud Application Foundation Traffic Director/Web Tier WebLogic Server Coherence Tuxedo Virtual Assembly Builder ORACLE Cloud Exalogic Elastic Cloud Live Events
  • 4. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.4 Coherence Eventing Mechanisms §  MapListener –  Client-side “post”-events §  Triggers –  Server-side “pre”-events §  Backing Map Listeners –  Server-side “post”-events §  Others –  PartitionListener, MemberListener, ServiceListener Existing
  • 5. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.5 Coherence Eventing Mechanisms §  Distinct registration mechanism per event type §  No commonality for client interfaces or events §  Are the events synchronously or asynchronously dispatched? Disadvantages
  • 6. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.6 Live Event Model §  EntryEvent –  Data related §  EntryProcessorEvent –  EntryProcessor invocation §  TransferEvent –  Partition redistribution §  TransactionEvent –  Cross cache event PartitionedCache PartitionedService
  • 7. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.7 Data-Related Events §  BinaryEntry-based public interface EntryEvent! extends Event<EntryEvent.Type>! {! /**! * Return the immutable Set of {@link BinaryEntry entries} on which the! * action represented by this {@link EntryEvent} occurred.! *! * @return the Set of entries represented by this event! */! public Set<BinaryEntry> getEntrySet();! ! ! public static enum Type! {! INSERTING, INSERTED, UPDATING, UPDATED, REMOVING, REMOVED! }! }!
  • 8. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.8 Data-Related Events NamedCache.put()NamedCache.put() EventInterceptor INSERTING EventInterceptor INSERTING 10110110 00101010 11010011 Backup (async) INSERTED Backup (async) INSERTED
  • 9. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.9 EntryProcessor-Related Events §  BinaryEntry-based public interface EntryProcessorEvent! extends Event<EntryEvent.Type>! {! "public Set<BinaryEntry> getEntrySet();! /**! * Return the {@link EntryProcessor} associated with this {@link! * EntryProcessorEvent}.! *! * @return the entry processor associated with this event! */! public EntryProcessor getProcessor();! ! public static enum Type! {! EXECUTING, EXECUTED! }! }!
  • 10. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.10 EntryProcessor-Related Events NamedCache.invoke()NamedCache.invoke() EventInterceptor EXECUTING EntryProcessor EventInterceptor EXECUTING EntryProcessor 10110110 00101010 11010011 10110110 00101010 11010011 Backup (async) EXECUTED Backup (async) EXECUTED
  • 11. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.11 Transfer-Related Events §  BinaryEntry-based public interface TransferEvent! extends Event<EntryEvent.Type>! {! public int getPartitionId();! public Member getLocalMember();! public Member getRemoteMember();! /**! * Return a map of cache names and associated set of read-only {@link! * BinaryEntry entries} encapsulated in this {@link TransferEvent}. The! * returned map and contained sets are immutable.! *! * @return a map of cache names and associated set of entries! */! public Map<String, Set<BinaryEntry>> getEntries();! ! public static enum Type! {! DEPARTING, ARRIVED! }! }!
  • 12. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.12 ARRIVEDARRIVED Transfer-Related Events EventInterceptor EventInterceptor EventInterceptor EventInterceptor DEPARTING EventInterceptor DEPARTING EventInterceptor DEPARTING EventInterceptor DEPARTING
  • 13. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.13 Transaction-Related Events §  All entries enlisted within a partition local transaction §  BinaryEntry-based public interface TransactionEvent! extends Event<TransactionEvent.Type>! {! /**! * A set of {@link BinaryEntry entries} enlisted within this! * transaction.! *! * @return a set of entries enlisted within this transaction! */! public Set<BinaryEntry> getEntrySet();! ! public static enum Type! {! COMMITTING, COMMITTED! }! }!
  • 14. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.14 COMMITTED Backup (async) EventInterceptor Transaction-Related Events NamedCache .invokeAll({A,B}) NamedCache .invokeAll({A,B}) EntryProcessor Keys:{A,B}Keys:{A,B} enlist:{C}enlist:{C} COMMITTING:{A,B,C}COMMITTING:{A,B,C} COMMITTED Backup (async)
  • 15. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.15 Registration §  distributed-scheme –  PartitionedService level interceptors: TransferEvent & TransactionEvent –  PartitionedCache events for all caches §  cache-scheme-mapping –  PartitionedCache level interceptors: EntryEvent & EntryProcessorEvent –  Ties to caches that conform to the cache-name pattern §  Use Annotation & Generics to filter events Declarative – Cache Configuration
  • 16. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.16 Registration Declarative – Cache Configuration
  • 17. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.17 Registration §  ConfigurableCacheFactory holds an InterceptorRegistry: §  Annotation and Generics on interceptor are honored §  Services and caches can be filtered by implementing: EventDispatcherAwareInterceptor Programmatic
  • 18. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.18
  • 19. Copyright © 2013, Oracle and/or its affiliates. All rights reserved.19 Join the Coherence Community http://coherence.oracle.com @OracleCoherence /OracleCoherence blogs.oracle.com/OracleCoherence Group: Oracle Coherence Users /OracleCoherence coherence.oracle.com/display/CSIG Coherence Special Interest Group
  • 20. <Insert Picture Here> Coherence Live Events Harvey Raja Principal Member Technical Staff, Cloud Application Foundation Oracle Coherence Oracle Fusion Middleware 12c Cloud Application Foundation You Video Series