IBM Tooling for Service Component Architecture

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News IBM Tooling for Service Component Architecture
# 1  
Old 12-23-2007
IBM Tooling for Service Component Architecture

An Eclipse-based tool that can be used to model, transform, or implement SCA (Service Component Architecture) applications. (NEW: 11/16/2007 in eclipse)

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies

2. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

3. High Performance Computing

IBM Scheduler for High Throughput Computing on IBM Blue Gene P

A lightweight scheduler that supports high-throughput computing (HTC) applications on Blue Gene/P. (NEW: 06/12/2008 in grid) More... (0 Replies)
Discussion started by: Linux Bot
0 Replies
Login or Register to Ask a Question
Catalyst::Component::InstancePerContext(3pm)		User Contributed Perl Documentation	      Catalyst::Component::InstancePerContext(3pm)

NAME
Catalyst::Component::InstancePerContext - Return a new instance a component on each request SYNOPSYS
package MyComponent; use Moose; with 'Catalyst::Component::InstancePerContext'; sub build_per_context_instance{ my ($self, $c) = @_; # ... do your thing here return SomeModule->new(%args); } REQUIRED METHODS
Your consuming class must implement the following method. build_per_context_instance The value returned by this call is what you will recieve when you call $c->component('YourComponent'). PROVIDED METHODS
This role will add the following method to your consuming class. ACCEPT_CONTEXT If the context is not blessed, it will simple pass through the value of "build_per_context_instance". If context is blessed it will look in the "stash" for an instance of the requested component and return that or, if the value is not found, the value returned by "build_per_context_instance" will be stored and return. The idea behind this behavior is that a component can be built on a per-request basis, as the name of this module implies. SEE ALSO
Moose, Moose::Role, Catalyst::Component AUTHOR
Guillermo Roditi (groditi) <groditi@cpan.org> LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.14.2 2007-06-07 Catalyst::Component::InstancePerContext(3pm)