feedUnionfeedUnion
Merge two feeds
Home > Books > NetKernel API and Services Reference > Accessor Listing > PiNKY > feedUnion

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:pinkypipes:mod:pinky

The feedUnion accessor is exported by the urn:org:pinkypipes:mod:pinky module. Import this module to gain access to the accessor.

Syntax

URI
active:feedUnion

ArgumentRulesDescription
feed1Mandatory A feed resource
feed2Mandatory A feed resource
feednOptional Multiple additional feed resources

Example Usage

DPML

<instr>
  <type>feedUnion</type>
  <feed1>somefeed.xml</feed1>
  <feed2>anotherfeed.xml</feed2>
  <target>var:merged-feeds</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:feedUnion");
req.addArgument("feed1", [resource representation, aspect, or URI] );
req.addArgument("feed2", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The feedUnion accessor merges two or more feeds. The accessor returns a FeedAspect resource.

Example - Multiple Merge

Any argument whose name starts with 'feed' will be processed into the union. Here four feeds are merged...

<instr>
  <type>feedUnion</type>
  <feed1>../data/rss1.xml</feed1>
  <feed2>../data/rss2.xml</feed2>
  <feed3>../data/rss3.xml</feed3>
  <feed4>var:some-dynamically-generated-feed</feed4>
  <target>this:response</target>
</instr>

For more details see the PiNKY guide.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.